Example #1
0
 /// <summary> Determines whether this DbGeometry value spatially crosses the specified DbGeometry argument. </summary>
 /// <returns>true if other crosses this geometry value; otherwise false.</returns>
 /// <param name="other">The geometry value that should be compared with this geometry value.</param>
 /// <exception cref="T:System.ArgumentNullException">other</exception>
 public bool Crosses(DbGeometry other)
 {
     Check.NotNull(other, "other");
     return(_spatialProvider.Crosses(this, other));
 }