■ Enumerable 클래스의 Repeat 정적 메소드를 사용해 값을 초기화한 배열을 구하는 방법을 보여준다.
▶ Enumerable 클래스 : Repeat 정적 메소드를 사용해 값을 초기화한 배열 구하기 예제 (C#)
1 2 3 |
double[] doubleArray = GetArray<double>(10); |
▶ Enumerable 클래스 : Repeat 정적 메소드를 사용해 값을 초기화한 배열 구하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
using System.Linq; #region 배열 구하기 - GetArray<T>(length) /// <summary> /// 배열 구하기 /// </summary> /// <typeparam name="TItem">항목 타입</typeparam> /// <param name="length">길이</param> /// <returns>배열</returns> public TItem[] GetArray<TItem>(int length) { TItem[] array= Enumerable.Repeat<TItem>(default(TItem), length).ToArray<TItem>(); return array; } #endregion |