C#의 Dictionary.Add() 메서드는 사전에 지정된 키와 값을 추가하는 데 사용됩니다.
구문
다음은 구문입니다 -
public void Add (TKey key, TValue val);
위에서 key 매개변수는 키이고 Val은 요소의 값입니다.
예
이제 Dictionary.Add() 메서드를 구현하는 예를 살펴보겠습니다.
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan
예
이제 Dictionary.Add() 메서드를 구현하는 또 다른 예를 살펴보겠습니다.
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Count of elements = "+dict.Count); dict.Add("Six", "Anne"); dict.Add("Seven", "Katie"); Console.WriteLine("Count of elements (updated) = "+dict.Count); Console.WriteLine("Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } } }
출력
이것은 다음과 같은 출력을 생성합니다 -
Count of elements = 5 Count of elements (updated) = 7 Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan Key = Six, Value = Anne Key = Seven, Value = Katie