コード例 #1
0
ファイル: MyNewObj.cs プロジェクト: Logeshkumar/Projects
 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
ファイル: MyNewObj.cs プロジェクト: Logeshkumar/Projects
 public abstract bool m_LessThan(Value other);