It looks to me like this is actually the number of seconds since 1/1/1970. I've used this method before. If I'm correct then you could convert this to a regular DateTime by calling this.
DateTime dt = new DateTime(1970, 1, 1).AddSeconds(<valuehere>);