Recall, Retrieval, and the Scientific Method
Improving Readability with Small Things In my series on building a Chess game using TDD I’ve defined a value type called BoardCoordinate that I introduced instead of passing around X and Y coordinate integer primitives everywhere. It’s a simple enough construct: public struct BoardCoordinate { private readonly int _x; public int X { get {…
