c# timestamp now

42

c# datetime now timestamp -

var Timestamp = new DateTimeOffset(DateTime.UtcNow).ToUnixTimeSeconds();

c# datetime now timestamp -

String timeStamp = GetTimestamp(DateTime.Now);

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);

c# timestamp now -

String timeStamp = GetTimestamp(new DateTime());

Comments

Submit
0 Comments