Yurttas/PL/OOL/CS/F/02/08/01/Comp00.cs

 1/**
 2 *  Copyright(C) 2010
 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, 2010.
11 *  @authorĀ : Salih Yurttas.
12 */
13
14
15using System;
16
17using CompA;
18using CompB;
19
20namespace CompAB
21{
22  public class Comp00
23  {
24    public static void Main(string[] args)
25    {
26      CompA.CompA CA = new CompA.CompA();
27
28      CA.FOne(2);
29      CA.FTwo(4);
30
31      CompB.CompB CB = new CompB.CompB();
32
33      CB.FOne(4);
34      CB.FTwo(2);
35    }
36  }
37}