다음을 통해 공유


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 Windows 서버 2012, Windows Server 2008 R2, Windows 7, 8

버전 정보

F# 코어 라이브러리 버전

지원: 2.0, 4.0, 노트북

참고 항목

참조

Core.ExtraTopLevelOperators 모듈(F#)

Microsoft.FSharp.Core 네임스페이스(F#)