■ 2차원 배열 값 순차적으로 설정하는 방법을 보여준다.
※ 3행 4열 2차원 배열에 값을 순차적으로 설정하는 경우
▶ 2차원 배열 값 순차적으로 설정하기 예제 (C#)
1 2 3 4 5 |
int[,] integerArray = new int[3, 4]; SetSequentialValue(integerArray); |
▶ 2차원 배열 값 순차적으로 설정하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#region 값 순차적으로 설정하기 - SetSequentialValue(integerArray) /// <summary> /// 값 순차적으로 설정하기 /// </summary> /// <param name="integerArray">정수 배열</param> public void SetSequentialValue(int[,] integerArray) { int rowCount = integerArray.GetUpperBound(0) + 1; int columnCount = integerArray.GetUpperBound(1) + 1; for(int rowIndex = 0; rowIndex < rowCount; rowIndex++) { for(int columnIndex = 0; columnIndex < columnCount; columnIndex++) { integerArray[rowIndex, columnIndex] = columnIndex + rowIndex * columnCount + 1; } } } #endregion |