| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- texture
- 아이튠즈
- unity3D
- sdk
- XML
- unity
- path
- Flash
- builder
- 배열
- 단축키
- AS3
- 게임
- 영어
- file
- ios
- class
- swf
- iphone
- Android
- smartfoxserver
- 태그를 입력해 주세요.
- flash builder
- Game
- AIR
- Mac
- 경로
- Build
- Ane
- 3d
Archives
- Today
- Total
상상 너머 그 무언가...
c# int Array 선언방법 본문
int[] arr1 = new int[] { 3, 4, 5 }; // Declare int array
int[] arr2 = { 3, 4, 5 }; // Another
var arr3 = new int[] { 3, 4, 5 }; // Another
int[] arr4 = new int[3]; // Declare int array of zeros
arr4[0] = 3;
arr4[1] = 4;
arr4[2] = 5;