예제 #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;
 }
예제 #2
0
 public abstract bool m_LessThan(Value other);