GeoCoordinate.Inequality(GeoCoordinate, GeoCoordinate) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether two GeoCoordinate objects correspond to different locations.
public:
static bool operator !=(System::Device::Location::GeoCoordinate ^ left, System::Device::Location::GeoCoordinate ^ right);
public static bool operator != (System.Device.Location.GeoCoordinate left, System.Device.Location.GeoCoordinate right);
static member op_Inequality : System.Device.Location.GeoCoordinate * System.Device.Location.GeoCoordinate -> bool
Public Shared Operator != (left As GeoCoordinate, right As GeoCoordinate) As Boolean
Parameters
- left
- GeoCoordinate
The first GeoCoordinate to compare.
- right
- GeoCoordinate
The second GeoCoordinate to compare.
Returns
true
, if the GeoCoordinate objects are determined to be different; otherwise, false
.
Remarks
Equivalent GeoCoordinate objects have the same Latitude and Longitude properties. The Altitude, HorizontalAccuracy, and VerticalAccuracy properties are not used to determine equivalency.