fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5.  
  6. public struct MyStruct
  7. {
  8. public int Day;
  9. public int Hour;
  10. public int Month;
  11. public int MonthVal;
  12. }
  13.  
  14. public static void Main()
  15. {
  16. MyStruct MS = new MyStruct();
  17. MS.Day = 1;
  18. MS.Hour = 12;
  19. MS.Month = 2;
  20. MS.MonthVal = 22;
  21. }
  22. }
Success #stdin #stdout 0.02s 23192KB
stdin
Standard input is empty
stdout
Standard output is empty