StructTest.Main C# (CSharp) Method

Main() public static method

public static Main ( ) : void
return void
    public static void Main()
    {
        string myString = "Hello";
        Console.WriteLine("MyString : {0}", myString);
        {
            MyDate myBirth = new MyDate(1971,12,11);
            Console.WriteLine("My Birthday : {0}",
                              myBirth);
        }
        {
            MyDate yourBirth;
            yourBirth = new MyDate();
            yourBirth.year = 1975;
            // yourBirth.month = 09;
            // yourBirth.day = 08;
            Console.WriteLine("Her Birthday : {0}",
                              yourBirth);
        }
    }
StructTest