Nexus.Client.Games.Steam.KeyValue.SaveToFile C# (CSharp) Méthode

SaveToFile() public méthode

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.
Résultat void
		public void SaveToFile(string path, bool asBinary)
		{
			if (asBinary)
				throw new NotImplementedException();

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