/// <summary>
 /// Adds an item to the collection
 /// </summary>
 /// <param name="pc">a ParentChild object</param>
 /// <returns></returns>
 public int Add(ParentChild pc)
 {
     return this.InnerList.Add(pc);
 }
예제 #2
0
 /// <summary>
 /// Adds an item to the collection
 /// </summary>
 /// <param name="pc">a ParentChild object</param>
 /// <returns></returns>
 public int Add(ParentChild pc)
 {
     return(this.InnerList.Add(pc));
 }