示例#1
0
 public ushort_v Clone()
 {
     ushort_v o_v = new ushort_v();
     o_v.v_ = this.v_;
     return o_v;
 }
示例#2
0
 public static ushort_v Copy(short_v o_v)
 {
     ushort_v x_ushort_v = null;
     if (o_v != null)
     {
         x_ushort_v = new ushort_v(o_v.v);
         return x_ushort_v;
     }
     else
     {
         return null;
     }
 }