Yurttas/PL/OOL/CS/F/03/04/00/PA2.cs
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
14
15using System;
16using System.Collections.Generic;
17using System.Text;
18
19namespace PClasses
20{
21 partial class PA
22 {
23 private int b;
24
25 public int B
26 {
27 get
28 {
29 return b;
30 }
31 set
32 {
33 b = value;
34 }
35 }
36
37 public PA()
38 {
39 a = 2;
40 b = 8;
41 }
42 }
43}