Yurttas/PL/OOL/CS/F/02/08/00/A07.cs
Jump to navigation
Jump to search
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 : January 1, 2004.
11 * @author : Salih Yurttas.
12 */
13
14
15using System;
16
17using SYTwo;
18using SYThree;
19
20namespace SYOne
21{
22 public class A07
23 {
24 public static void Main(string[] args)
25 {
26 Console.WriteLine("SYOne");
27 Console.WriteLine();
28
29 Console.WriteLine("SYTwo");
30 Console.WriteLine();
31
32 Console.WriteLine("C1 -");
33
34 C C1 = new C();
35
36 C1.printC();
37
38 Console.WriteLine();
39 Console.WriteLine("D1 -");
40
41 D D1 = new D();
42
43 D1.printD();
44
45 Console.WriteLine();
46 Console.WriteLine("SYThree");
47 Console.WriteLine();
48
49 Console.WriteLine("E1 -");
50
51 E E1 = new E();
52
53 E1.printE();
54 }
55 }
56}