Nexus.Client.Games.Steam.KeyValue.LoadAsText C# (CSharp) Method

LoadAsText() public static method

Attempts to load the given filename as a text KeyValue.
This method will swallow any exceptions that occur when reading, use ReadAsText if you wish to handle exceptions.
public static LoadAsText ( string path ) : KeyValue
path string The path to the file to load.
return KeyValue
		public static KeyValue LoadAsText(string path)
		{
			return LoadFromFile(path, false);
		}