使用数据合约C#

时间:2015-07-20 17:40:20

标签: c# attributes datacontract

有人可以判断是否可以将自定义属性值与应用它的属性绑定在一起吗?

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时 - 代码不会编译

谢谢!

0 个答案:

没有答案