Answers for "timestamp c# from"

C#
3

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

C# Answers by Framework

Browse Popular Code Answers by Language