Exemple #1
0
        public dbyte_array_v Clone()
        {
            dbyte_array_v o_v = new dbyte_array_v();

            o_v.v = (byte[])this.v.Clone();
            o_v.defined = this.m_defined;
            return o_v;
        }
Exemple #2
0
 public static dbyte_array_v Copy(dbyte_array_v o_v)
 {
     if (o_v != null)
     {
         return o_v.Clone();
     }
     else
     {
         return null;
     }
 }