コード例 #1
0
ファイル: Range.cs プロジェクト: SilverPhoenix99/mintcs
 public Range(Fixnum begin, Fixnum end, bool excludeEnd = false)
     : this((iObject)begin, end, excludeEnd)
 {
 }
コード例 #2
0
ファイル: Fixnum.cs プロジェクト: SilverPhoenix99/mintcs
 public bool Equals(Fixnum other) => other.Value == Value;