CollectionsUtil.CreateCaseInsensitiveHashtable 메서드

정의

문자열의 Hashtable 대/소문자를 무시하는 클래스의 새 인스턴스를 만듭니다.

오버로드

Name Description
CreateCaseInsensitiveHashtable()

기본 초기 용량을 사용하여 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스를 만듭니다.

CreateCaseInsensitiveHashtable(IDictionary)

지정된 사전의 항목을 복사한 항목 수와 동일한 초기 용량을 가진 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스로 복사합니다.

CreateCaseInsensitiveHashtable(Int32)

지정된 초기 용량을 사용하여 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스를 만듭니다.

CreateCaseInsensitiveHashtable()

기본 초기 용량을 사용하여 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스를 만듭니다.

public:
 static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable();
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable();
static member CreateCaseInsensitiveHashtable : unit -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable () As Hashtable

반품

기본 초기 용량을 사용하는 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스입니다.

설명

메서드를 CreateCaseInsensitiveHashtable 사용하는 대신 생성자를 사용하여 Hashtable.Hashtable(IEqualityComparer) 대/소문자를 구분 Hashtable 하지 않는 클래스를 만듭니다.

추가 정보

적용 대상

CreateCaseInsensitiveHashtable(IDictionary)

지정된 사전의 항목을 복사한 항목 수와 동일한 초기 용량을 가진 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스로 복사합니다.

public:
 static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable(System::Collections::IDictionary ^ d);
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(System.Collections.IDictionary d);
static member CreateCaseInsensitiveHashtable : System.Collections.IDictionary -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable (d As IDictionary) As Hashtable

매개 변수

d
IDictionary

IDictionary 대/소문자를 구분하지 않는 새 대/소문자 구분에 복사할 수 있습니다Hashtable.

반품

지정된 IDictionary항목이 포함된 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스입니다.

예외

dnull입니다.

설명

메서드를 CreateCaseInsensitiveHashtable 사용하는 대신 생성자를 사용하여 Hashtable.Hashtable(IDictionary, IEqualityComparer) 대/소문자를 구분 Hashtable 하지 않는 클래스를 만듭니다.

추가 정보

적용 대상

CreateCaseInsensitiveHashtable(Int32)

지정된 초기 용량을 사용하여 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스를 만듭니다.

public:
 static System::Collections::Hashtable ^ CreateCaseInsensitiveHashtable(int capacity);
public static System.Collections.Hashtable CreateCaseInsensitiveHashtable(int capacity);
static member CreateCaseInsensitiveHashtable : int -> System.Collections.Hashtable
Public Shared Function CreateCaseInsensitiveHashtable (capacity As Integer) As Hashtable

매개 변수

capacity
Int32

처음에 포함할 수 있는 Hashtable 대략적인 항목 수입니다.

반품

지정된 초기 용량을 사용하는 클래스의 Hashtable 대/소문자를 구분하지 않는 새 인스턴스입니다.

예외

capacity가 0보다 작습니다.

설명

메서드를 CreateCaseInsensitiveHashtable 사용하는 대신 생성자를 사용하여 Hashtable.Hashtable(Int32, IEqualityComparer) 대/소문자를 구분 Hashtable 하지 않는 클래스를 만듭니다.

추가 정보

적용 대상