using System.Collections.Generic;
public static void Main()
DateTime time = UnixTimeStampToDateTime(1542058720);
private static DateTime UnixTimeStampToDateTime(long unixTimeStamp)
System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0,System.DateTimeKind.Utc);
dtDateTime = dtDateTime.AddSeconds( unixTimeStamp ).ToLocalTime();