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物理巡检点);
 }