phdesign.NppToolBucket.Infrastructure.Settings.Set C# (CSharp) Method

Set() public method

public Set ( SettingsSection section, string keyName, bool value ) : void
section SettingsSection
keyName string
value bool
return void
        public void Set(SettingsSection section, string keyName, bool value)
        {
            Set(section, keyName, value ? "True" : "False");
        }

Same methods

Settings::Set ( SettingsSection section, string keyName, int value ) : void
Settings::Set ( SettingsSection section, string keyName, string value ) : void