I need to get milliseconds from the timer
// get timer part
time_t timer = time(NULL);
struct tm now = *localtime( &timer );
char timestamp[256];
// format date time
strftime(timestamp, sizeof(timestamp), "%Y-%m-%d_%H.%M.%S", &now);
I want to get like this in C#:
DateTime.Now.ToString("yyyy-MM-dd_HH.mm.ss.ff")
I tried using %f or %F but it does work with C++. how can I get %f for milliseconds from tm?
See Question&Answers more detail:os