Enumerable 클래스를 사용하여 반복되는 배열의 값을 쉽게 초기화 할 수 있습니다.
//int[] ints = new int[1000];
//0으로 초기화
int[] ints = Enumerable.Repeat(0, 1000).ToArray();
//ints = { 0, 0, 0, ... , 0 }
int[] ints = Enumerable.Range(1, 10).Select(x => x * x).ToArray();
//ints = { 1, 4, 9, 16, 25, 36, 49, 64, 81 , 100 }
[.NET] This XML file does not appear to have any (0) | 2022.10.26 |
---|---|
[.NET] System.Text.Json.JsonException 'The JSON value could not be converted to System.String' 에러 (0) | 2022.10.20 |
[.NET] 현재 Directory 경로 (0) | 2022.10.15 |
[.NET] 역직렬화할 클래스가 없는 경우 JsonNode (0) | 2022.10.10 |
[.NET] .NET sdk 버전 확인 (0) | 2022.10.10 |
댓글 영역