Ejemplo n.º 1
0
 public DurationStruct Duration;     //{get; set;} -can't return a ref to a val type (in C#)
 public void Init()
 {
     // initialize struct (not really "new" like a ref type)
     Duration = new DurationStruct(1, DurationUnit.Hours);
 }
Ejemplo n.º 2
0
 public DurationStruct Duration;     //{get; set;} -can't return a ref to a val type (in C#)
 public void Init()
 {
     // initialize struct (not really "new" like a ref type)
     // -helpful syntax if DurationStruct ever graduated/ascended to class
     Duration = new DurationStruct(1, DurationUnit.Hours);
 }