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

SaveToFile() public method

Saves this instance to file.
public SaveToFile ( string path, bool asBinary ) : void
path string The file path to save to.
asBinary bool If set to true, saves this instance as binary.
return void
		public void SaveToFile(string path, bool asBinary)
		{
			if (asBinary)
				throw new NotImplementedException();

			using (var f = File.Create(path))
			{
				RecursiveSaveToFile(f, 0);
			}
		}