Inheritance: AbstractTO
Esempio n. 1
0
 public UserOptionArray(UserOption[] mdo)
 {
     if (mdo == null)
     {
         return;
     }
     options = new UserOptionTO[mdo.Length];
     for (int i = 0; i < mdo.Length; i++)
     {
         options[i] = new UserOptionTO(mdo[i]);
     }
     count = mdo.Length;
 }
Esempio n. 2
0
 public UserOptionArray(UserOption[] mdo)
 {
     if (mdo == null)
     {
         return;
     }
     options = new UserOptionTO[mdo.Length];
     for (int i = 0; i < mdo.Length; i++)
     {
         options[i] = new UserOptionTO(mdo[i]);
     }
     count = mdo.Length;
 }