C# Dictionary first element
카테고리 없음2018. 6. 21. 15:27
1 2 3 4 5 | using System.Linq; Dictionary<int, int> dic = new Dictionary<int, int>(); // 첫번 째 값 dic.First() | cs |
1 2 3 4 5 | using System.Linq; Dictionary<int, int> dic = new Dictionary<int, int>(); // 첫번 째 값 dic.First() | cs |