Wednesday, August 18, 2021

Best Practice Csharp Use NameOf for Constant

Productivity Tool MSBUILDLog and Project

Download https://msbuildlog.com/













Visual Studio Build Log Extension

https://marketplace.visualstudio.com/items?itemName=VisualStudioProductTeam.ProjectSystemTools

Monday, August 16, 2021

Hello world Csharp

Next time you write Hello World! Do this,

using static System.Console;
public class Program {
static void main() => WriteLine("Hello World");
}

 

Csharp Interface with same method implementation

using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
{
I1 ia = new C();
ia.Method1();
I2 ib = new C();
ib.Method1();
}
public class C: I1, I2
{
void I1.Method1()
{
Console.WriteLine("Hello");
}
void I2.Method1()
{
Console.WriteLine("Bye");
}
}
public interface I1
{
void Method1();
}
public interface I2
{
void Method1();
}
}
view raw Oops.cs hosted with ❤ by GitHub