GameBase.Config.IniSection.WriteValue C# (CSharp) Method

WriteValue() public method

public WriteValue ( string key, System.DateTime value ) : void
key string
value System.DateTime
return void
        public void WriteValue(string key, DateTime value)
        {
            AddKeyValue(key, Convert.ToString(value));
        }

Same methods

IniSection::WriteValue ( string key, bool value ) : void
IniSection::WriteValue ( string key, float value ) : void
IniSection::WriteValue ( string key, int value ) : void
IniSection::WriteValue ( string key, string value ) : void