Inheritance: AbstractTO
Ejemplo n.º 1
0
 public TaggedAdtArray(string tag, Adt[] mdoItems)
 {
     this.tag = tag;
     if (mdoItems == null)
     {
         this.count = 0;
         return;
     }
     items = new AdtTO[mdoItems.Length];
     for (int i = 0; i < mdoItems.Length; i++)
     {
         items[i] = new AdtTO(mdoItems[i]);
     }
     count = items.Length;
 }
Ejemplo n.º 2
0
 public TaggedAdtArray(string tag, Adt[] mdoItems)
 {
     this.tag = tag;
     if (mdoItems == null)
     {
         this.count = 0;
         return;
     }
     items = new AdtTO[mdoItems.Length];
     for (int i = 0; i < mdoItems.Length; i++)
     {
         items[i] = new AdtTO(mdoItems[i]);
     }
     count = items.Length;
 }