AcManager.Tools.Helpers.IniFileExtension.Set C# (CSharp) Method

Set() public static method

public static Set ( this section, [ key, Color entry ) : void
section this
key [
entry Color
return void
        public static void Set(this IniFileSection section, [LocalizationRequired(false)] string key, Color entry) {
            section.Set(key, $"{entry.R.ToInvariantString()},{entry.G.ToInvariantString()},{entry.B.ToInvariantString()}");
        }

Same methods

IniFileExtension::Set ( this section, [ key, Color entry, double multipler ) : void
IniFileExtension::Set ( this section, [ key, SettingEntry entry ) : void