public RomInfo(RomInfo other) { Id = other.Id; Name = other.Name; Save = other.Save; Cic = other.Cic; }
static public RomInfo GetRomById(string id) { RomInfo res = null; var info = _KnownRoms.Find((x) => { return(String.Equals(x.Id, id)); }); if (info != null) { // return a copy res = new RomInfo(info); } return(res); }