Click or drag to resize

GameInfo.Write Method (String)

Writes this game info out to the specified file

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public void Write(
	string filename
)

Parameters

filename
Type: System.String
The file name
Examples
C#
string file = @"C:\Users\Link\Documents\my_game.zora";
GameInfo info = new GameInfo();
info.Write(file);
See Also