/// <summary>
 /// Gets an int from the ini.
 /// </summary>
 /// <param name="section">Section of the key.</param>
 /// <param name="name">Name of the key.</param>
 /// <param name="defaultValue">Value that should be used when no value is found.</param>
 /// <param name="autoSave">Whether or not the default value should be written if no value is found.</param>
 /// <returns></returns>
 public static int GetInt(string section, string name, int defaultValue = 0, bool autoSave = false)
 => StaticInstace.GetInt(section, name, defaultValue, autoSave);