tags:

views:

1849

answers:

2

All I need is a way to query an NTP Server from C# to get the Date Time of the NTP Server returned as either a string or as a DateTime.

How is this possibly in its simplest form

+7  A: 

NtpClient (using Google Code Search => ntp lang:c#)

Shay Erlichmen
+1  A: 

The .NET Micro Framework Toolkit found in the CodePlex has an NTPClient. I have never used it myself but it looks good. http://mftoolkit.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24469

Ther is also another example located here http://www.programmersheaven.com/download/22219/2/ZipView.aspx

Tony Borf