01.08.2015, 12:09 | #1 |
MCTS
|
Текущее время с точностью до миллисекунд
Здравствуйте. Как вывести текущее время с миллисекундами?
|
|
01.08.2015, 13:12 | #2 |
Участник
|
__________________
AxAssist 2012 - Productivity Tool for Dynamics AX 2012/2009/4.0/3.0 |
|
01.08.2015, 15:41 | #3 |
MCTS
|
ну хорошо, текущее время я получу через timenow(), а как сюда прикрутить WinAPI::getTickCount64()?
|
|
01.08.2015, 23:16 | #4 |
Гость
|
X++: int miliseconds; System.DateTime datetime; datetime = System.DateTime::get_Now(); miliseconds = datetime.get_Millisecond(); info(strFmt("%1", miliseconds)); |
|
|
За это сообщение автора поблагодарили: Eldar9x (5). |
02.08.2015, 08:45 | #5 |
Участник
|
Там же
Цитата:
Remarks
The resolution of the GetTickCount64 function is limited to the resolution of the system timer, which is typically in the range of 10 milliseconds to 16 milliseconds. The resolution of the GetTickCount64 function is not affected by adjustments made by the GetSystemTimeAdjustment function. |
|