Yurttas/PL/OOL/CS/F/03/00/20/01/IA.cs

From ZCubes Wiki
Jump to navigation Jump to search
 1/**
 2 *  Copyright(C) 2006
 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, 2006.
11 *  author : Salih Yurttas.
12 *
13 *  IA.cs
14 */
15
16
17using System.Collections;
18
19interface IA
20{
21  int SA1
22  {
23    get;
24  }
25
26  ArrayList A1
27  {
28    get;
29    set;
30  }
31
32  int SA2
33  {
34    get;
35  }
36
37  string A2
38  {
39    get;
40    set;
41  }
42
43  void Output();
44}