求解释个步骤
求解释个方法[ConfigurationProperty(CusMapSetting)]public CustomMapCfgElement CusMapSetting{get {
求解释个方法
[ConfigurationProperty("CusMapSetting")]
public CustomMapCfgElement CusMapSetting
{
get { return (CustomMapCfgElement)this["CusMapSetting"]; }
set { this["CusMapSetting"] = value; }
}
这段代码是什么意思啊
[解决办法][...]
这个叫attribute
你可以定位到ConfigurationProperty,CustomMapCfgElement等,然后右键,转到定义看它究竟是什么。