using System;
class SampleClass
{
string s1 = "Sample1";
protected string s2="Sample2";
// プロパティ
public string S1
{
set { this.s1 = value; }
get { return this.s1; }
}
public string S2
{
set { this.s2 = value; }
get{return s2;}
}
}
class MainClass
{
static void Main()
{
// SampleClassをインスタンス化
SampleClass sample = new SampleClass();
// setを呼ぶ
sample.S1 = "Private";
sample.S2 = "Protected";
/* getを呼ぶ
* 出力値
* Private
* Protected */
Console.WriteLine("{0}¥n{1}",
sample.S1, sample.S2);
}
}
0 コメント:
コメントを投稿