CelestialSunSet Property
Sunset time.
Namespace: CoordinateSharpAssembly: CoordinateSharp (in CoordinateSharp.dll) Version: 3.1.1.1
XMLNS for XAML: Not mapped to an xmlns.
public DateTime? SunSet { get; }
Property Value
NullableDateTime If DateTime is null, check the SunCondition property.
The following example gets the sunset time in UTC at N 39, W 72 on 1-March-2018
Coordinate coordinate = new Coordinate(39,-72, new DateTime(2018,3,1));
Console.WriteLine(coordinate.CelestialInfo.SunSet); //3/1/2018 10:41:34 PM (UTC)
The following example demonstrates a returned null SunSet value as the sun does not set at N 39, W 72 on 1-March-2018.
You can see why there is no value returned by checking the SunCondition property to see that the sun is down all day
at the specified location.
Coordinate coordinate = new Coordinate(85,-72, new DateTime(2018,3,1));
Console.WriteLine(coordinate.CelestialInfo.SunSet); //Returns Null
Console.WriteLine(coordinate.CelestialInfo.SunCondition); //DownAllDay