using System; public class Test { public struct MyStruct { public int Day; public int Hour; public int Month; public int MonthVal; } public static void Main() { MyStruct MS = new MyStruct(); MS.Day = 1; MS.Hour = 12; MS.Month = 2; MS.MonthVal = 22; } }