BoundingBoxIsValid Property |
Namespace: Telogis.GeoBase
BoundingBox bb1 = new BoundingBox(); // Add arbitrary points in Los Angeles, USA. bb1.Add(new LatLon(33.94, -118.34)); bb1.Add(new LatLon(33.78, -117.95)); Console.WriteLine("Is this a valid BoundingBox? " + bb1.IsValid); // Prints 'Is this a valid BoundingBox? True'