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

C#의 Dictionary.Item[] 속성

<시간/>

C#의 Dictionary.Item[] 속성은 사전에서 지정된 키와 연결된 값을 가져오거나 설정하는 데 사용됩니다.

구문

다음은 구문입니다 -

public TValue this[TKey key] { get; set; }

예시

이제 Dictionary.Item[] 속성을 구현하는 예를 살펴보겠습니다. -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict =
      new Dictionary<string, string>();
      dict.Add("One", "Chris");
      dict.Add("Two", "Steve");
      dict.Add("Three", "Messi");
      dict.Add("Four", "Ryan");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Value for key three = "+dict["Three"]);
      dict["Three"] = "Ronaldo";
      Console.Write("Updated value associated with key Three...");
      Console.WriteLine(dict["Three"]);
      if (dict.ContainsValue("Angelina"))
         Console.WriteLine("\n\nValue found!");
      else
         Console.WriteLine("\n\nValue isn't in the dictionary!");
      dict.Clear();
      Console.WriteLine("Cleared Key/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Count of elements now = "+dict.Count);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Count of elements = 5
Key/value pairs...
Key = One, Value = Chris
Key = Two, Value = Steve
Key = Three, Value = Messi
Key = Four, Value = Ryan
Key = Five, Value = Nathan
Value for key three = Messi
Updated value associated with key Three...Ronaldo
Value isn't in the dictionary!
Cleared Key/value pairs...
Count of elements now = 0

예시

이제 Dictionary.Item[] 메서드를 구현하는 또 다른 예를 살펴보겠습니다.

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main(){
      Dictionary<string, string> dict =
      new Dictionary<string, string>();
      dict.Add("One", "Chris");
      dict.Add("Two", "Steve");
      dict.Add("Three", "Messi");
      dict.Add("Four", "Ryan");
      dict.Add("Five", "Nathan");
      Console.WriteLine("Count of elements = "+dict.Count);
      Console.WriteLine("\nKey/value pairs...");
      foreach(KeyValuePair<string, string> res in dict){
         Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value);
      }
      Console.WriteLine("Value for key three = "+dict["Three"]);
      dict["Three"] = "Katie";
      Console.Write("Updated value associated with key Three...");
      Console.WriteLine(dict["Three"]);
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

Count of elements = 5
Key/value pairs...
Key = One, Value = Chris
Key = Two, Value = Steve
Key = Three, Value = Messi
Key = Four, Value = Ryan
Key = Five, Value = Nathan
Value for key three = Messi
Updated value associated with key Three...Katie