DarkSkySharp.Geolocation.Geolocation C# (CSharp) Method

Geolocation() public method

Latitude in decimal degrees Longitude in decimal degrees
public Geolocation ( double lat = 42.3916667, double lon = -71.5666667 ) : System
lat double
lon double
return System
        public Geolocation(double lat = 42.3916667, double lon = -71.5666667)
        {
            Latitude = lat;
            Longitude = lon;
        }