728x90
배열 생성과 동시에 배열의 전체 값을 특정 값으로 초기화 해보자
Enumerable.Repeat 함수
- Enumerable.Repeat(초기화값, 크기);
(1) int 타입의 크기 10000인 배열을 생성과 동시에 배열 전체의 값을 0으로 초기화 해보자
// 배열 생성과 동시에 값을 0 으로 초기화
int[] array = Enumerable.Repeat<int>(0, 10000).ToArray<int>();
(2) char 타입의 크기 1000인 배열을 생성 후 해당 배열의 전체 값을 'S'로 초기화 해보자
char[] array = new char[100]; // 배열 생성
array = Enumerable.Repeat('S', 1000).ToArray(); // 배열의 값을 'S'로 초기화
'개발언어 > C#' 카테고리의 다른 글
[C#/API] Gloobal Hotkey(핫키) 등록하기 (RegisterHotKey, UnregisterHotKey) (0) | 2021.09.17 |
---|---|
[C#] Button Image 테두리(border) 없애기 (0) | 2021.08.26 |
[C#] Dictionary Value 로 Class 사용하기 (0) | 2021.08.24 |
[C#] Dictionary 사용법. 기본,응용 (0) | 2021.08.23 |
[C#] Dictionary의 Value 값으로 Key 찾기 (0) | 2021.08.23 |