public bool Equals(Byte2 p) { if ((object)p == null) return false; return (x == p.x) && (y == p.y); }
public Byte2(Byte2 t) { x = t.x; y = t.y; }