/// <summary> /// Sets an int in the ini. /// </summary> /// <param name="section">Section of the key.</param> /// <param name="name">Name of the key.</param> /// <param name="value">Value that should be written.</param> public static void SetInt(string section, string name, int value) => StaticInstance.SetInt(section, name, value);