일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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# 추상 클래스
- 도커
- c# winform
- gitlab
- Data Structure
- Python
- HTML
- c# 윈폼
- C# delegate
- c#
- Houdini
- jupyter lab
- docker
- 플러터
- C언어 포인터
- git
- vim
- 깃
- Algorithm
- Unity
- C++
- dart 언어
- 포인터
- jupyter
- Flutter
- github
- c언어
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