Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public abstract bool m_LessThan(Value other);