Answers for "convert date to timestamp c#"

C#
4

convert timestamp to datetime c# code

public static DateTime UnixTimeStampToDateTime( double unixTimeStamp )
{
    // Unix timestamp is seconds past epoch
    System.DateTime dtDateTime = new DateTime(1970,1,1,0,0,0,0,System.DateTimeKind.Utc);
    dtDateTime = dtDateTime.AddSeconds( unixTimeStamp ).ToLocalTime();
    return dtDateTime;
}
Posted by: Guest on February-19-2020
1

c# datetime to timestamp

DateTimeOffset.UtcNow.ToUnixTimeSeconds()
Posted by: Guest on October-12-2020

Code answers related to "convert date to timestamp c#"

C# Answers by Framework

Browse Popular Code Answers by Language