VBuffer<T>.Items(Boolean) 方法

定义

返回所有索引/值对的联合列表。

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))

参数

all
Boolean

如果 true 所有对(即使是稀疏表示形式的隐式值)都将返回,且隐式值具有默认值,如适用。 如果左侧 false ,则仅返回显式定义的值。

返回

索引/值对。

适用于