Exemple #1
0
 public bool Equals(OPERATION_RESULT that)
 {
     return(this.m_value == that.m_value);
 }
Exemple #2
0
 public int CompareTo(OPERATION_RESULT that)
 {
     return((m_value < that.m_value) ? -1 : (m_value > that.m_value) ? +1 : 0);
 }