ArraySet.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(ArraySet) |
Perform a |
AddAll(ICollection) |
Perform an |
AddAll(ArraySet)
Perform a #add(Object)
of all values in <var>array</var>
[Android.Runtime.Register("addAll", "(Landroid/util/ArraySet;)V", "", ApiSince=23)]
public void AddAll (Android.Util.ArraySet? array);
[<Android.Runtime.Register("addAll", "(Landroid/util/ArraySet;)V", "", ApiSince=23)>]
member this.AddAll : Android.Util.ArraySet -> unit
Parameters
- array
- ArraySet
The array whose contents are to be retrieved.
- Attributes
Remarks
Perform a #add(Object)
of all values in <var>array</var>
Java documentation for android.util.ArraySet.addAll(android.util.ArraySet<? extends E>)
.
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(ICollection)
Perform an #add(Object)
of all values in <var>collection</var>
[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)]
public bool AddAll (System.Collections.ICollection? collection);
[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)Z", "", ApiSince=23)>]
abstract member AddAll : System.Collections.ICollection -> bool
override this.AddAll : System.Collections.ICollection -> bool
Parameters
- collection
- ICollection
The collection whose contents are to be retrieved.
Returns
Implements
- Attributes
Remarks
Perform an #add(Object)
of all values in <var>collection</var>
Java documentation for android.util.ArraySet.addAll(java.util.Collection<? extends E>)
.
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.