例如:
class Test{
                [Style("人", DefaultValue = "无名")]
public string Name
{
get { return m_strName; }
set { m_strName = value; }
}
}
Test t = new Test();t.Name = "李四";
其中Style是自定义属性,我想获取获取Style中的值的时候也能获取Name的值“李四”C#