일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Game
- iphone
- 경로
- texture
- AIR
- 배열
- Ane
- XML
- flash builder
- 3d
- Android
- sdk
- AS3
- unity3D
- Mac
- 단축키
- builder
- unity
- swf
- 게임
- path
- 태그를 입력해 주세요.
- 아이튠즈
- smartfoxserver
- 영어
- file
- ios
- Flash
- Build
- class
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;