WinCompose.SettingsEntry.SettingsEntry C# (CSharp) Method

SettingsEntry() protected method

protected SettingsEntry ( string section, string key, object defaultValue ) : System
section string
key string
defaultValue object
return System
        protected SettingsEntry(string section, string key, object defaultValue)
        {
            Section = section;
            Key = key;
            m_value = defaultValue;
        }