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