1
Answer

How to Fetch Current Time from Internet?

Photo of neetha mathew

neetha mathew

7y
2.1k
1
How to Fetch Current Time from Internet to a Text box using C#??
 
I tried following code:
 
DateTime d = DateTime.UtcNow;
DateTimeOffset dto2 = DateTimeOffset.UtcNow;
 
But it return only Correct date. 

Answers (1)