예제 #1
0
 public vAlarm Add(vAlarm Value)
 {
     // After you inherit the CollectionBase class, you can access an intrinsic object
     // called InnerList that represents your collection. InnerList is of type ArrayList.
     this.InnerList.Add(Value);
     return Value;
 }
예제 #2
0
 public vAlarm Add(vAlarm value)
 {
     this.InnerList.Add(value);
     return(value);
 }