コード例 #1
0
                public override bool Equals(object obj)
                {
                    JamBit other = (JamBit)obj;

                    return(this.map == other.map && this.jam == other.jam && this.bit == other.bit);
                }
コード例 #2
0
 public bool Equals(JamBit other) => this.Map == other.Map && this.Jam == other.Jam && this.Bit == other.Bit;