示例#1
0
 protected bool Equals(PyInteger other)
 {
     return(Value.Equals(other.Value));
 }
示例#2
0
 protected bool Equals(PyInteger other)
 {
     return(Value == other.Value && IntegerType == other.IntegerType);
 }