📄 ncindyconfigurationcollection.cs
字号:
namespace NCindy.Util
{
using System;
using System.Configuration;
internal sealed class NCindyConfigurationCollection : ConfigurationElementCollection
{
protected override ConfigurationElement CreateNewElement()
{
return new NCindyConfigurationElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((NCindyConfigurationElement) element).Key;
}
public override ConfigurationElementCollectionType CollectionType
{
get
{
return ConfigurationElementCollectionType.BasicMap;
}
}
protected override string ElementName
{
get
{
return "add";
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -