Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 NameValueCollection 클래스를 사용하는 방법은 무엇입니까?

<시간/>

NameValueCollection은 단일 키에 대해 둘 이상의 값을 설정합니다. 이제 C# 프로그램에서 사용하는 방법을 살펴보겠습니다.

컬렉션 설정 -

static NameValueCollection GetCollection() {
   NameValueCollection myCollection = new NameValueCollection();
   myCollection.Add("Tim", "One");
   myCollection.Add("John", "Two");
   myCollection.Add("Jamie", "Three");
   return myCollection;
}

이제 GetCollection() 메서드로 "AllKeys" 메서드 속성을 사용하여 모든 키를 표시합니다 -

NameValueCollection myCollection = GetCollection();
foreach (string key in myCollection.AllKeys) {
   Console.WriteLine(key);
}