static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.ReadKey(); //For working with "AbstractAndInterfaceClass". Abc sc = new Abc(); Console.WriteLine(sc.Print()); Console.ReadKey(); }
static void Main(string[] args) { Abc.Print(); projectTeam.TeamB.Abc.Print(); //fully qualified or using in header, is ok when they have same class names. fromteamB.Abc.Print(); //quick access using alias }