次のようなプロパティで部分クラスを定義しました。
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ディクショナリのコンテンツを取得します。しかし、私がビルドすると、次のようになります。
「メンバー名を囲んでいるタイプと同じにすることはできません」
なんで?