日期:2014-05-17 浏览次数:20941 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
test t = new test();
t.Name = "3"; //设置这个name,我并没有执行get方法,而应该是set。为什么这里监视到t.name = "1"?
Console.WriteLine(t.Name);
Console.ReadLine(); //最后输出结果为 "1"
}
}
public class test
{
private string name;
public string Name
{
get { if (true) { return "1"; } }
set { name = value; }
}
}
}