📄 ncindyconfigurationelement.cs
字号:
namespace NCindy.Util
{
using System;
using System.Configuration;
internal sealed class NCindyConfigurationElement : ConfigurationElement
{
[ConfigurationProperty("key", IsKey=true, IsRequired=true)]
public string Key
{
get
{
return (string) base["key"];
}
set
{
base["key"] = value;
}
}
[ConfigurationProperty("value", IsRequired=true)]
public string Value
{
get
{
return (string) base["value"];
}
set
{
base["value"] = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -