SnesRomSave Method
Save the ROM changes to the specified file path.
Namespace: DevCase.Core.Media.Gaming.RomHacking.SNESAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public void Save(
string filePath,
bool replace
)
Public Sub Save (
filePath As String,
replace As Boolean
)
Dim instance As SnesRom
Dim filePath As String
Dim replace As Boolean
instance.Save(filePath, replace)
public:
void Save(
String^ filePath,
bool replace
)
member Save :
filePath : string *
replace : bool -> unit
No code example is currently available or this language may not be supported.
Parameters
- filePath String
-
The ROM file path.
- replace Boolean
-
If set to , replaces any existing file,
otherwise, it will throw throws a IOException if the target file already exists.
IOException
|
The target file already exists.
|