예제 #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);
 }