일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- C++
- 깃
- jupyter
- C# delegate
- c#
- 플러터
- git
- Houdini
- vim
- docker
- 다트 언어
- 포인터
- 도커
- Unity
- Flutter
- Data Structure
- c# 윈폼
- 구조체
- C언어 포인터
- dart 언어
- c# 추상 클래스
- HTML
- c# winform
- 유니티
- c언어
- Python
- github
- Algorithm
- jupyter lab
- gitlab
Archives
- Today
- Total
목록c# 다차원 배열 (1)
nomad-programmer
[Programming/C#] 다차원 배열
다차원 배열이란 차원이 둘 이상인 배열을 말한다. 2차원 배열도 다차원 배열에 해당한다. using System; namespace test { internal class Program { public static void Main(string[] args) { int[,,] arr3d = new int[4, 3, 2] { { {0, 1}, {2, 3}, {4, 5} }, { {6, 7}, {8, 9}, {10, 11} }, { {12, 13}, {14, 15}, {16, 17} }, { {18, 19}, {20, 21}, {22, 23} } }; for (int i = 0; i < arr3d.GetLength(0); i++) { for (int j = 0; j < arr3d.GetLength(1); j..
Programming/C#
2020. 9. 14. 22:21