コード例 #1
0
 /// <summary>
 /// Adds the contents of a different selected items collection to this
 /// collection.
 /// </summary>
 /// <param name="items">Items collection to be added.</param>
 public void Add(UiElementInfoCollection items)
 {
     foreach (UiElementInfo item in items)
     {
         Add(item);
     }
 }
コード例 #2
0
 /// <summary>
 /// Adds the contents of a different selected items collection to this
 /// collection.
 /// </summary>
 /// <param name="items">Items collection to be added.</param>
 public void Add(UiElementInfoCollection items) {
    foreach(UiElementInfo item in items) {
       Add(item);
    }
 }