CopyOnWriteArrayList.AddAll Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AddAll(ICollection) |
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator. |
AddAll(Int32, ICollection) |
Inserts all of the elements in the specified collection into this list, starting at the specified position. |
AddAll(ICollection)
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.
[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler")]
public virtual bool AddAll (System.Collections.ICollection c);
[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "GetAddAll_Ljava_util_Collection_Handler")>]
abstract member AddAll : System.Collections.ICollection -> bool
override this.AddAll : System.Collections.ICollection -> bool
Parameters
collection containing elements to be added to this list
Returns
true
if this list changed as a result of the call
Implements
- Attributes
Remarks
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
AddAll(Int32, ICollection)
Inserts all of the elements in the specified collection into this list, starting at the specified position.
[Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler")]
public virtual bool AddAll (int index, System.Collections.ICollection c);
[<Android.Runtime.Register("addAll", "(ILjava/util/Collection;)Z", "GetAddAll_ILjava_util_Collection_Handler")>]
abstract member AddAll : int * System.Collections.ICollection -> bool
override this.AddAll : int * System.Collections.ICollection -> bool
Parameters
- index
- Int32
index at which to insert the first element from the specified collection
collection containing elements to be added to this list
Returns
true
if this list changed as a result of the call
Implements
- Attributes
Remarks
Inserts all of the elements in the specified collection into this list, starting at the specified position. Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in this list in the order that they are returned by the specified collection's iterator.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.