Inheritance: AbstractTaggedArrayTO
コード例 #1
0
 public TaggedSurgeryReportArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedSurgeryReportArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i));
         }
         else if (MdwsUtils.isException(t.GetValue(i)))
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (Exception)t.GetValue(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (SurgeryReport[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (SurgeryReport)t.GetValue(i));
         }
     }
     count = t.Count;
 }
コード例 #2
0
 public TaggedSurgeryReportArrays(IndexedHashtable t)
 {
     if (t.Count == 0)
     {
         return;
     }
     arrays = new TaggedSurgeryReportArray[t.Count];
     for (int i = 0; i < t.Count; i++)
     {
         if (t.GetValue(i) == null)
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i));
         }
         else if (MdwsUtils.isException(t.GetValue(i)))
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (Exception)t.GetValue(i));
         }
         else if (t.GetValue(i).GetType().IsArray)
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (SurgeryReport[])t.GetValue(i));
         }
         else
         {
             arrays[i] = new TaggedSurgeryReportArray((string)t.GetKey(i), (SurgeryReport)t.GetValue(i));
         }
     }
     count = t.Count;
 }