Example #1
0
 public dDateTime_v Clone()
 {
     dDateTime_v o_v = new dDateTime_v();
     o_v.v = this.v;
     return o_v;
 }
Example #2
0
 public static dDateTime_v Copy(dDateTime_v o_v)
 {
     if (o_v != null)
     {
         return o_v.Clone();
     }
     else
     {
         return null;
     }
 }