/// <summary> /// Constructs a new LatLng, copying the values from the given LatLng /// </summary> /// <param name="toCopy">The LatLng to copy the values from</param> public LatLng(LatLng toCopy) { this.Latitude = toCopy.Latitude; this.Longitude = toCopy.Longitude; this.Valid = toCopy.Valid; }