public override bool m_LessThan(Value other) { if (other is IntValue == false) return false; IntValue typed_other = (IntValue)other; return m_PKValue < typed_other.m_PKValue; }
public abstract bool m_LessThan(Value other);