23 [DebuggerDisplay(
"ToString()")]
24 public struct CellId : IEquatable<CellId> {
28 ColumnOffset = columnOffset;
33 public int ColumnOffset {
get;
private set; }
40 public override bool Equals(
object obj) {
44 return Equals((CellId)obj);
48 return base.GetHashCode();
52 return String.Format(
"{0}({1})",
RowId, ColumnOffset);
override string ToString()
override int GetHashCode()
CellId(RowId rowId, int columnOffset)
override bool Equals(object obj)
Defines the value of a ROWID object, that is a unique reference within a database system to a single ...
bool Equals(CellId other)