Yurttas/PL/OOL/CS/F/03/04/00/PA1.cs

 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
14
15using System;
16using System.Collections.Generic;
17using System.Text;
18
19namespace PClasses
20{
21  partial class PA
22  {
23    private int a;
24
25    public int A
26    {
27      get
28      {
29        return a;
30      }
31      set
32      {
33        a = value;
34      }
35    }
36  }
37}