CSharp_BaseConstructor.Program.Main C# (CSharp) Method

Main() static private method

static private Main ( string args ) : void
args string
return void
        static void Main(string[] args)
        {
            A a = new A("a");
            B b = new B("b");

            Console.ReadKey();
        }
Program