Portable NuGet library/package for communicating with ntp-server(s).
Build | |
NuGet | |
Gitter |
Install the NuGet package using the command below,
Install-Package NtpClient
. . . or search for NtpClient
in the NuGet index.
The code below is an example how to use the library.
using NtpClient;
var connection = new NtpConnection("pool.ntp.org");
var utcNow = connection.GetUtc();