예제 #1
0
파일: Board.cs 프로젝트: Blecki/coerceo
 public bool Equals(Board Other)
 {
     fixed (byte* x = Data)
         for (byte i = 0; i < 20; ++i)
             if (x[i] != Other._data(i)) return false;
     return true;
 }