I want to use GetTickCount to do a stopwatch app, which imports do I need to make it work?
Printable View
I want to use GetTickCount to do a stopwatch app, which imports do I need to make it work?
You don't need any imports because its an API function. You shouldn't be using it anyway because the Environment.TickCount property gives you the same value.
That's sorted then, thank you