Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- premake5
- 화살표 함수
- 배열문제
- 화살표 메서드
- C++
- 비주얼스튜디오
- 렌더몽키
- python
- swipe
- 셰이더
- 그림자 효과
- 파이썬
- uidesign
- IMGUI
- 게임만들기
- c#
- 이득우언리얼
- 언리얼
- 가변배열
- 표창던지기
- visualstudio2022
- 유니티
- c++class
- 공부
- 다중상속
- 이득우
- rendermonkey
- 화살피하기
- 3차원배열
- Unity
Archives
- Today
- Total
목록컬렉션 (1)
신입 개발자 공부 과정

-다차원 배열과 가변배열 Jagged Array and Adjustable Array array of different element size ex) x x x x x x x x x creat instants of Adjustable Array= new int[3][]; Announce to Adjustable Array variables= int[][]arr = new int[3][]; arr null null null to use Adj Array, initilize elements first. ex) arr[0] = new int[3]; arr[1] = new int[2]; arr[2] = new int[4]; or arr[0] = new int[ ] {1,3,5}; //first column ..
C#/수업 내용
2021. 12. 29. 16:26