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

ReadFileAsText() public method

Opens and reads the given filename as text.
public ReadFileAsText ( string filename ) : bool
filename string The file to open and read.
return bool
		public bool ReadFileAsText( string filename )
		{
			using ( var fs = new FileStream( filename, FileMode.Open ) )
			{
				return ReadAsText( fs );
			}
		}