我试图在每次点击标题集访问器时设置 UpperTitle 填充 Title.ToUpper。
public string Title
{
get { return Title; }
set
{
Title = value;
UpperTitle = Title.ToUpper();
}
}
public string UpperTitle { get; protected set; }
这段代码可以编译,但我不确定是否可以,因为我遇到了映射异常
problem to set property by reflection