protected bool Equals(OddPair other) { return((First == other.First && Second == other.Second) || (First == other.Second && Second == other.First)); }
public void Setup() { m_PairOne = new OddPair(1, 2); m_PairTwo = new OddPair(2, 5); m_PairOneSwapped = new OddPair(2, 1); }