VBuffer<T>.Items(Boolean) 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.
Returns the joint list of all index/value pairs.
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<int,T>> Items (bool all = false);
member this.Items : bool -> seq<System.Collections.Generic.KeyValuePair<int, 'T>>
Public Function Items (Optional all As Boolean = false) As IEnumerable(Of KeyValuePair(Of Integer, T))
Parameters
- all
- Boolean
If true
all pairs, even those implicit values of a sparse representation,
will be returned, with the implicit values having the default value, as is appropriate. If left
false
then only explicitly defined values are returned.
Returns
The index/value pairs.