Nexus.Client.Games.Steam.KeyValue.LoadAsText C# (CSharp) Метод

LoadAsText() публичный статический Метод

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.
Результат KeyValue
		public static KeyValue LoadAsText(string path)
		{
			return LoadFromFile(path, false);
		}