Inheritance: AbstractTaggedArrayTO
Ejemplo n.º 1
0
 public TaggedMicrobiologyRptArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedMicrobiologyRptArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i));
         }
         else if (MdwsUtils.isException(t.GetValue(i)))
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (Exception)t.GetValue(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (MicrobiologyReport[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (MicrobiologyReport)t.GetValue(i));
         }
     }
     count = t.Count;
 }
 public TaggedMicrobiologyRptArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedMicrobiologyRptArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i));
         }
         else if (MdwsUtils.isException(t.GetValue(i)))
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (Exception)t.GetValue(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (MicrobiologyReport[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedMicrobiologyRptArray((string)t.GetKey(i), (MicrobiologyReport)t.GetValue(i));
         }
     }
     count = t.Count;
 }