有人可以判断是否可以将自定义属性值与应用它的属性绑定在一起吗?
E.G。
class Attr : Attribute
{
public string PropName;
public Attribute(string name)
{
//DataContract of name and attribute that it will be applied to
...
PropName = name;
}
}
//somewhere in code
class A
{
[Attr("EXACTNAME")]
bool EXACTNAME;
}
所以当用户输入不匹配的字符串\ fieldname时 - 代码不会编译
谢谢!