// public static implicit operator Nation(int value) // { // var nation = new Nation // { // id = value // }; // return nation; // } protected bool Equals(Nation other) { return(id == other.id); }