GameInfo.Write Method (String) |
Writes this game info out to the specified file
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic void Write(
string filename
)
Public Sub Write (
filename As String
)
Parameters
- filename
- Type: System.String
The file name
Examplesstring file = @"C:\Users\Link\Documents\my_game.zora";
GameInfo info = new GameInfo();
info.Write(file);
See Also