You can find the project here on GitHub: https://github.com/joelmartinez/darksky-csharp
Currently supported platforms are: Windows Phone, iOS, and Android via MonoTouch/Mono for Android.
Usage is very simple:
Please let me know if you have any feedback either by opening an issue, emailing me, commenting on my blog, or forking the project and submitting a pull request.using DarkSky;
...
var darksky = new DarkSky.Api(YOUR_API_KEY); var orlando = new Position { Latitude=28.5381f, Longitude=-81.3794f }; Task<FullForecast> response = darksky.Forecast(orlando);
response.ContinueWith(forecast => DisplayText(forecast.Result.HourSummary)); // displays something like "Rain starting in 3 Min, Stopping 30 Min Later"