Esempio n. 1
0
 /// <summary>
 /// Remove an existing 装置 from the collection
 /// </summary>
 /// <pdGenerated>Default Remove</pdGenerated>
 public void Remove装置(装置 old装置)
 {
     if (old装置 == null)
      return;
       if (this.装置 != null)
      if (this.装置.Contains(old装置))
         this.装置.Remove(old装置);
 }
Esempio n. 2
0
 /// <summary>
 /// Add a new 装置 in the collection
 /// </summary>
 /// <pdGenerated>Default Add</pdGenerated>
 public void Add装置(装置 new装置)
 {
     if (new装置 == null)
      return;
       if (this.装置 == null)
      this.装置 = new System.Collections.Generic.List<装置>();
       if (!this.装置.Contains(new装置))
      this.装置.Add(new装置);
 }