1/**
2 * Copyright(C) 2003
3 * All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4 *
5 * Permission to use, copy, modify, and distribute this
6 * software and its documentation for EDUCATIONAL purposes
7 * and without fee is hereby granted provided that this
8 * copyright notice appears in all copies.
9 *
10 * date : September 1, 2003.
11 * author : Salih Yurttas.
12 *
13 */
14
15
16using System;
17
18namespace A
19{
20
21 public class A01
22 {
23 public static void Main(string[] args)
24 {
25 A AA = new A();
26
27 AA.PrintA();
28
29 Console.WriteLine("i0 = {0}", AA.I0);
30
31 Console.WriteLine("i1 = {0}", AA.I1);
32
33 Console.WriteLine();
34
35 int[] B = AA.I0I1;
36
37 Console.WriteLine("i0 = {0}", B[0]);
38 Console.WriteLine("i0 = {0}", B[1]);
39
40 AA.PrintA();
41
42 AA.I0 = 5;
43 AA.I1 = 9;
44
45 AA.PrintA();
46
47 AA.I0I1 = 4;
48
49 AA.PrintA();
50 }
51 }
52
53}