C# KeyValuePair 클래스 생성
123 | 2025-02-07 08:54:03
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}"); } } }