1/**
2 * Copyright(C) 2004
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, 2004
11 * @authorĀ : Salih Yurttas
12 *
13 */
14
15
16using System;
17
18namespace ID
19{
20
21 public class IDA00
22 {
23 public static void Main(string[] args)
24 {
25 IDA o1 = new IDA(2,
26 2);
27
28 Console.WriteLine("o1 -");
29 Console.WriteLine(o1.A0);
30 Console.WriteLine(o1.A1);
31
32 o1.A0 = 4;
33 o1.A0 = 7;
34
35 Console.WriteLine("\no1 -");
36
37 Console.WriteLine(o1.A0);
38 Console.WriteLine(o1.A1);
39
40 IDA o2 = new IDA(3,
41 1);
42
43 Console.WriteLine("\no2 -");
44 Console.WriteLine(o2.A0);
45 Console.WriteLine(o2.A1);
46 }
47 }
48
49}