How do I get epoch time in C#? [duplicate] Ask Question

How do I get epoch time in C#? [duplicate] Ask Question

Possible Duplicate:
How do you convert epoch time in C#?

I'm trying to figure out how to get the epoch time in C#. Similar to the timestamps given on this website: http://www.epochconverter.com/

Does DateTime have a method for that?

ベストアンサー1

TimeSpan t = DateTime.UtcNow - new DateTime(1970, 1, 1);
int secondsSinceEpoch = (int)t.TotalSeconds;
Console.WriteLine(secondsSinceEpoch);

おすすめ記事