Inheritance: AbstractTO
コード例 #1
0
ファイル: TaggedDrgArray.cs プロジェクト: OSEHRA/mdws
 public TaggedDrgArray(string tag, Drg[] mdoItems)
 {
     this.tag = tag;
     if (mdoItems == null)
     {
         this.count = 0;
         return;
     }
     items = new DrgTO[mdoItems.Length];
     for (int i = 0; i < mdoItems.Length; i++)
     {
         items[i] = new DrgTO(mdoItems[i]);
     }
     count = items.Length;
 }
コード例 #2
0
 public TaggedDrgArray(string tag, Drg[] mdoItems)
 {
     this.tag = tag;
     if (mdoItems == null)
     {
         this.count = 0;
         return;
     }
     items = new DrgTO[mdoItems.Length];
     for (int i = 0; i < mdoItems.Length; i++)
     {
         items[i] = new DrgTO(mdoItems[i]);
     }
     count = items.Length;
 }