C# KeyValuePair 클래스 생성
C# KeyValuePair 클래스 생성
using System; using System.Collections.Generic; namespace xxx { class Program { static void Main() { KeyValuePair<int, int> X; X = KeyValuePair.Create<int, int>(123, 456); Console.WriteLine($"{X.Key} {X.Value}"); } } }
