Answers for "get timestamp seconds c#"

C#
0

get unix time in seconds C#

DateTimeOffset.UtcNow.ToUnixTimeSeconds()
Posted by: Guest on November-20-2020
0

c# timestamp

public static String GetTimestamp(DateTime value)
{
    return value.ToString("yyyyMMddHHmmssffff");
}
//  ...later on in the code
String timeStamp = GetTimestamp(new DateTime());
Console.WriteLine(timeStamp);
Posted by: Guest on October-22-2021

Code answers related to "get timestamp seconds c#"

C# Answers by Framework

Browse Popular Code Answers by Language