[ConfigurationProperty("filename", DefaultValue = "default.txt")]
public string FileName
{
get
{
return (string)this["filename"];
}
set
{
this["filename"] = value;
}
}
请问[ConfigurationProperty("filename", DefaultValue = "default.txt")]中的[]是什么意思?谢谢!