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

C#의 KeyValuePair

<시간/>

KeyValuePair 클래스는 C#을 사용하여 단일 목록에 값 쌍을 저장합니다.

KeyValuePair 설정 및 요소 추가 -

var myList = new List<KeyValuePair<string, int>>();

// adding elements
myList.Add(new KeyValuePair<string, int>("Laptop", 20));
myList.Add(new KeyValuePair<string, int>("Desktop", 40));
myList.Add(new KeyValuePair<string, int>("Tablet", 60));

다음은 KeyValuePair로 작업하고 키와 값을 표시하는 방법을 배우는 코드입니다 -

Using System;
using System.Collections.Generic;
class Program {
   static void Main() {
      var myList = new List<KeyValuePair<string, int>>();
      // adding elements
      myList.Add(new KeyValuePair<string, int>("Laptop", 20));
      myList.Add(new KeyValuePair<string, int>("Desktop", 40));
      myList.Add(new KeyValuePair<string, int>("Tablet", 60));
      foreach (var val in myList) {
         Console.WriteLine(val);
      }
   }
}