Class GameRom
Represents game disk image.
public class GameRom : ObservableObject, INotifyPropertyChanged, IEquatable<GameRom>
- Inheritance
-
GameRom
- Implements
- Inherited Members
Constructors
GameRom()
Creates new instance of GameRom.
public GameRom()
GameRom(string, string)
Creates new instance of GameRom.
public GameRom(string name, string path)
Parameters
Properties
Name
Gets ROM name.
public string Name { get; set; }
Property Value
Path
Gets ROM path.
public string Path { get; set; }
Property Value
Methods
Equals(GameRom)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(GameRom other)
Parameters
other
GameRomAn object to compare with this object.
Returns
- bool
true if the current object is equal to the
other
parameter; otherwise, false.
GetCopy()
public GameRom GetCopy()