Answers for "c# date as a timestamp"

C#
1

c# datetime to timestamp

DateTimeOffset.UtcNow.ToUnixTimeSeconds()
Posted by: Guest on October-12-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 "c# date as a timestamp"

C# Answers by Framework

Browse Popular Code Answers by Language