我有一个像这样设置的字典: Dictionary <string, ItemProperties>
ItemProperties 对象如下所示(基类是抽象的):
public class StringProperty : ItemProperty
{
public string RawProp { get; set; }
public string RenderedProp { get; set; }
}
有没有办法像这样获取 RenderedProp 值(假设字典变量称为属性):
string value = Properties[keyname];
相对
string value = Properties[keyname].RenderedProp;