我已经定义了一个具有如下属性的部分类:
public partial class Item{
public string this[string key]
{
get
{
if (Fields == null) return null;
if (!Fields.ContainsKey(key))
{
var prop = GetType().GetProperty(key);
if (prop == null) return null;
return prop.GetValue(this, null) as string;
}
object value = Fields[key];
return value as string;
}
set
{
var property = GetType().GetProperty(key);
if (property == null)
{
Fields[key] = value;
}
else
{
property.SetValue(this, value, null);
}
}
}
}
这样我就可以做到:
myItem["key"];
并获取 Fields 字典的内容。但是当我构建时,我得到:
“成员名称不能与其封闭类型相同”
为什么?