DefaultValue属性不适用于我的自动属性
我有以下的自动属性
[DefaultValue(true)]
public bool RetrieveAllInfo { get; set; }
当我尝试在代码中使用它时,我发现默认的false为false
我假设这是默认值到一个bool
变量,没有人有线索什么是错的!?
DefaultValue属性仅用于告诉Visual Studio设计者(例如,在设计表单时)属性的默认值是什么。 它不会在代码中设置属性的实际默认值。
更多信息在这里:http://support.microsoft.com/kb/311339
[DefaultValue]
仅用于(例如)序列化API(如XmlSerializer
)和一些UI元素(如PropertyGrid
)。 它没有设置值本身; 你必须使用一个构造函数:
public MyType()
{
RetrieveAllInfo = true;
}
或手动设置字段,即不使用自动实现的属性:
private bool retrieveAllInfo = true;
[DefaultValue(true)]
public bool RetrieveAllInfo {
get {return retrieveAllInfo; }
set {retrieveAllInfo = value; }
}
对此的一个破解是在这个链接上。
简而言之,在构造函数的最后调用这个函数。
static public void ApplyDefaultValues(object self)
{
foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(self)) {
DefaultValueAttribute attr = prop.Attributes[typeof(DefaultValueAttribute)] as DefaultValueAttribute;
if (attr == null) continue;
prop.SetValue(self, attr.Value);
}
}
链接地址: http://www.djcxy.com/p/51339.html
上一篇: DefaultValue attribute is not working with my Auto Property
下一篇: Resources for learning LINQ and Entity Framework Queries?