How do you convert Unix epoch time into real time in C#? (Epoch beginning 1/1/1970)
You actually want to AddMilliseconds(milliseconds), not seconds. Adding seconds will give you an out of range exception.