5 private static int[] array
= {0, 1, 2, 3}
;
7 private static int [,] bar
= { {0,1}
, {4,5}
, {10,20}
};
9 static string [] names
= {
10 "Miguel", "Paolo", "Dietmar", "Dick", "Ravi"
13 public static int Main ()
15 int [] i
= new int [4] { 0, 1, 2, 3 }
;
17 short [,] j
= new short [4,2] { {0,1}
, {2,3}
, {4,5}
, {6,7}
};
19 ushort [] a
= { 4, 5, 6, 7 }
;
21 long [,,] m
= new long [2,3,2] {{{0,1}
, {2,3}
, {4,5}}
, {{6,7}
, {8,9}
, {10,11}}
};
24 int [] k
= new int [] { foo, foo+1, foo+4 }
;
26 int [,] boo
= new int [,] {{foo, foo+10}
, {foo+3, foo+10}}
;
28 float [] f_array
= new float [] { 1.23F, 4.5F, 6.24F }
;
30 double [] double_arr
= new double [] { 34.4567, 90.1226, 54.9823 }
;
32 char [] c_arr
= { 'A', 'B', 'C', 'M', 'R' }
;
34 byte [] b_arr
= { 0, 3, 8, 10, 21 }
;
36 sbyte [] s_arr
= { 10, 15, 30, 123 }
;
38 int[,,] ints
= new int[,,] { }
;
52 for (int t
= 0; t
< 4; ++t
) {
72 if (f_array
[0] != 1.23F
)
75 if (double_arr
[1] != 90.1226)
78 foreach (string s
in names
)
79 Console
.WriteLine ("Hello, " + s
);
81 if (names
[0] != "Miguel")
89 int [] x
= new int [count
];
91 for (int idx
= 0; idx
< count
; idx
++)
94 for (int idx
= count
; idx
> 0; ){
96 if (x
[idx
] != idx
+ 1)
100 IntPtr
[] arr
= { new System.IntPtr (1) }
;
101 if (arr
[0] != (IntPtr
) 1)
104 IntPtr
[] arr_i
= { System.IntPtr.Zero }
;
106 if (arr_i
[0] != System
.IntPtr
.Zero
)
109 Console
.WriteLine ("Array initialization test okay.");