<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.zcubes.com/index.php?action=history&amp;feed=atom&amp;title=Yurttas%2FPL%2FOOL%2FCS%2FF%2F04%2F03%2F03%2FB.cs</id>
	<title>Yurttas/PL/OOL/CS/F/04/03/03/B.cs - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.zcubes.com/index.php?action=history&amp;feed=atom&amp;title=Yurttas%2FPL%2FOOL%2FCS%2FF%2F04%2F03%2F03%2FB.cs"/>
	<link rel="alternate" type="text/html" href="http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/CS/F/04/03/03/B.cs&amp;action=history"/>
	<updated>2026-05-18T15:48:02Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/CS/F/04/03/03/B.cs&amp;diff=169629&amp;oldid=prev</id>
		<title>MassBot1: Created page with &quot;&lt;syntaxhighlight lang=&quot;csharp&quot; line start=&quot;1&quot; enclose=&quot;div&quot;&gt;/**  *  Copyright(C) 2004  *  All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..  *  * ...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/CS/F/04/03/03/B.cs&amp;diff=169629&amp;oldid=prev"/>
		<updated>2013-11-07T14:07:28Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;syntaxhighlight lang=&amp;quot;csharp&amp;quot; line start=&amp;quot;1&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;/**  *  Copyright(C) 2004  *  All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..  *  * ...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;csharp&amp;quot; line start=&amp;quot;1&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;/**&lt;br /&gt;
 *  Copyright(C) 2004&lt;br /&gt;
 *  All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..&lt;br /&gt;
 *&lt;br /&gt;
 *  Permission to use, copy, modify, and distribute this&lt;br /&gt;
 *  software and its documentation for EDUCATIONAL purposes&lt;br /&gt;
 *  and without fee is hereby granted provided that this&lt;br /&gt;
 *  copyright notice appears in all copies.&lt;br /&gt;
 *&lt;br /&gt;
 *  @date   : January 1, 2004.&lt;br /&gt;
 *  @author : Salih Yurttas.&lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
public class B : IA&lt;br /&gt;
{&lt;br /&gt;
  private int i1,&lt;br /&gt;
              i2,&lt;br /&gt;
              i3;&lt;br /&gt;
&lt;br /&gt;
  public B()&lt;br /&gt;
  {&lt;br /&gt;
    i1 = 0;&lt;br /&gt;
    i2 = 0;&lt;br /&gt;
    i3 = 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public B(int i)&lt;br /&gt;
  {&lt;br /&gt;
    i1 = i;&lt;br /&gt;
    i2 = i;&lt;br /&gt;
    i3 = i;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public B(int i,&lt;br /&gt;
           int j,&lt;br /&gt;
           int k)&lt;br /&gt;
  {&lt;br /&gt;
    i1 = i;&lt;br /&gt;
    i2 = j;&lt;br /&gt;
    i3 = k;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public int I1&lt;br /&gt;
  {&lt;br /&gt;
    get&lt;br /&gt;
    {&lt;br /&gt;
      return i1;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    set&lt;br /&gt;
    {&lt;br /&gt;
      i1 = value;&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public int I2&lt;br /&gt;
  {&lt;br /&gt;
    get&lt;br /&gt;
    {&lt;br /&gt;
      return i2;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    set&lt;br /&gt;
    {&lt;br /&gt;
      i2 = value;&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public int I3&lt;br /&gt;
  {&lt;br /&gt;
    get&lt;br /&gt;
    {&lt;br /&gt;
      return i3;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    set&lt;br /&gt;
    {&lt;br /&gt;
      i3 = value;&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  public void PrintAll()&lt;br /&gt;
  {&lt;br /&gt;
    System.Console.WriteLine(&amp;quot;i1 = {0}&amp;quot;, i1);&lt;br /&gt;
    System.Console.WriteLine(&amp;quot;i2 = {0}&amp;quot;, i2);&lt;br /&gt;
    System.Console.WriteLine(&amp;quot;i3 = {0}&amp;quot;, i3);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>MassBot1</name></author>
	</entry>
</feed>