Yurttas/PL/OOL/CS/F/02/08/00/D.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
17namespace SYTwo
18{
19 public class D
20 {
21 private int g = 1;
22 private int h = 4;
23 private char i = 'D';
24
25 public D() {}
26
27 public void printD()
28 {
29 Console.WriteLine("\ng = {0}, h = {1}", g, h);
30 Console.WriteLine("\ni = {0}", i);
31 }
32 }
33}