Example #1
0
 public void Remove(RegistrationInstructionsResponsePartyID item)
 {
     if (_al != null)
     {
         _al.Remove(item);
     }
 }
Example #2
0
 public void Add(RegistrationInstructionsResponsePartyID item)
 {
     if (_al == null)
     {
         _al = new ArrayList();
     }
     _al.Add(item);
     _last = item;
 }