Example #1
0
 public bool Equals(GeometryPoint other)
 {
     bool? nullable = base.BaseEquals(other);
     if (nullable.HasValue)
     {
         return nullable.GetValueOrDefault();
     }
     return ((((this.X == other.X) && (this.Y == other.Y)) && (this.Z == other.Z)) && (this.M == other.M));
 }
Example #2
0
        public bool Equals(GeometryPoint other)
        {
            bool?nullable = base.BaseEquals(other);

            if (nullable.HasValue)
            {
                return(nullable.GetValueOrDefault());
            }
            return((((this.X == other.X) && (this.Y == other.Y)) && (this.Z == other.Z)) && (this.M == other.M));
        }
Example #3
0
 public bool Equals(GeometryPoint other)
 {
     return(this.BaseEquals(other) ?? this.X == other.X && this.Y == other.Y && this.Z == other.Z && this.M == other.M);
 }
Example #4
0
 public bool Equals(GeometryPoint other)
 {
     return this.BaseEquals(other) ?? this.X == other.X && this.Y == other.Y && this.Z == other.Z && this.M == other.M;
 }