ExtraTopLevelOperators.dict<'Key,'Value> 函式 (F#)
從索引鍵/值組序列,建置唯讀查閱資料表。 使用泛形雜湊和相等,檢索索引鍵物件。
命名空間/模組路徑:Microsoft.FSharp.Core.ExtraTopLevelOperators
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
dict : seq<'Key * 'Value> -> IDictionary<'Key,'Value> (requires equality)
// Usage:
dict keyValuePairs
參數
- keyValuePairs
型別:seq<'Key * 'Value>
傳回值
物件,可實作代表指定集合的IDictionary<TKey, TValue>。
備註
這個函式在已編譯的組件中名為 CreateDictionary。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列程式碼範例示範 dict 函式的用法。
open System
open System.Collections.Generic
let seq1 = seq { for i in 1..10 -> i, i*i }
let dictionary1 = dict seq1
if dictionary1.IsReadOnly then
Console.WriteLine("The dictionary is read only.")
// The type is a read only IDictionary.
// If you try to add or remove elements,
// NotSupportedException is generated, as in the following line:
//dictionary1.Add(new KeyValuePair<int, int>(0, 0))
// You can use read-only methods as in the following lines.
if dictionary1.ContainsKey(5) then
Console.WriteLine("Value for key 5: {0}", dictionary1.Item(5))
for elem in dictionary1 do
Console.WriteLine("Key: {0} Value: {1}", elem.Key, elem.Value)
輸出如下。
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。