public override bool Equals(object obj) { SteamID steamId = obj as SteamID; if (steamId == null) { return(false); } else { return((long)this._id == (long)steamId.ToUInt64()); } }