ConcurrentDictionary<TKey,TValue>.ToArray 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 ConcurrentDictionary<TKey,TValue> 中存储的键和值对复制到新数组中。
public:
cli::array <System::Collections::Generic::KeyValuePair<TKey, TValue>> ^ ToArray();
public System.Collections.Generic.KeyValuePair<TKey,TValue>[] ToArray ();
member this.ToArray : unit -> System.Collections.Generic.KeyValuePair<'Key, 'Value>[]
Public Function ToArray () As KeyValuePair(Of TKey, TValue)()
返回
KeyValuePair<TKey,TValue>[]
一个新数组,其中包含从 ConcurrentDictionary<TKey,TValue> 复制的键和值对的快照。