示例#1
0
文件: Degrees.cs 项目: yxw027/GNSSer
 public Int32 CompareTo(Radians other)
 {
     return(CompareTo((Degrees)other));
 }
示例#2
0
 public Int32 CompareTo(Radians other)
 {
     return(_value.CompareTo(other._value));
 }
示例#3
0
文件: Degrees.cs 项目: yxw027/GNSSer
 public Boolean Equals(Radians other)
 {
     return(Equals((Degrees)other));
 }
示例#4
0
 public Boolean Equals(Radians other)
 {
     return(_value == other._value);
 }