August 2017
Beginner to intermediate
480 pages
11h 7m
English
class PktGetExecutaiontime
{
/// <summary>
/// Runs the class with the specified arguments.
/// </summary>
/// <param name = "_args">The specified arguments.</param>
public static void main(Args _args)
{
int start;
int end;
start = WinAPI::getTickCount();
sleep(1000); // pause for 1000 milliseconds
end = WinAPI::getTickCount();
info(strFmt("%1", end - start));
}
}

Read now
Unlock full access