/// <summary> /// Method to read the settings from the specified section. /// </summary> /// <returns>Object of type T containing the values read from the file</returns> public T ReadSettings() { _settings = _settingsReader.LoadSection <T>(); return(_settings); }