logo

C# 사전 초기화 프로그램

C# 사전 초기화 프로그램은 사전 요소를 초기화하는 데 사용되는 기능입니다. 사전은 요소들의 모음입니다. 키와 값 쌍으로 요소를 저장합니다.

사전 초기화 프로그램은 중괄호({})를 사용하여 키와 값 쌍을 묶습니다.

각 키의 값을 초기화하는 예를 살펴보겠습니다.

C# 사전 이니셜라이저 예제 1

 using System; using System.Collections.Generic; namespace CSharpFeatures { class DictionaryInitializer { public static void Main(string[] args) { Dictionary dictionary = new Dictionary() { [1] = 'Irfan', [2] = 'Ravi', [3] = 'Peter' }; foreach (KeyValuePair kv in dictionary) { Console.WriteLine('{ Key = ' + kv.Key + ' Value = ' +kv.Value+' }'); } } } } 

산출:

 { Key = 1 Value = Irfan } { Key = 2 Value = Ravi } { Key = 3 Value = Peter } 

이 예에서는 학생 데이터를 사전에 저장합니다. 우리는 학생 데이터를 저장하기 위해 사전 초기화 프로그램을 사용하고 있습니다. 다음 예를 참조하세요.

C# 사전 이니셜라이저 예제 2

 using System; using System.Collections.Generic; namespace CSharpFeatures { class Student { public int ID { get; set; } public string Name { get; set; } public string Email { get; set; } } class DictionaryInitializer { public static void Main(string[] args) { Dictionary dictionary = new Dictionary() { { 1, new Student(){ ID = 101, Name = 'Rahul Kumar', Email = '[email protected]'} }, { 2, new Student(){ ID = 102, Name = 'Peter', Email = '[email protected]'} }, { 3, new Student(){ ID = 103, Name = 'Irfan', Email = '[email protected]'} } }; foreach (KeyValuePair kv in dictionary) { Console.WriteLine('Key = '+kv.Key + ' Value = {' + kv.Value.ID +', '+ kv.Value.Name +', '+kv.Value.Email+'}'); } } } } 

산출:

 Key = 1 Value = {101, Rahul Kumar, [email protected] } Key = 2 Value = {102, Peter, [email protected] } Key = 3 Value = {103, Irfan, [email protected] }