S
Stoitcho Goutsev \(100\) [C# MVP]
Mattias,
Here is how the method for getting the tick count is declared in the
Enviroment class:
..method private hidebysig static int32 nativeGetTickCount() cil managed
internalcall
The following is the same method imported for PInvoke
..method public hidebysig static pinvokeimpl("kernel32.dll") int32
GetTickCount() cil managed
*internalcall* from the Environment class means that the method
implementation is provided form the CLR.
How do you know what is the implementation of this method?
In 17 days if I in meanwile don't restart my machine I'll give it a test
Here is how the method for getting the tick count is declared in the
Enviroment class:
..method private hidebysig static int32 nativeGetTickCount() cil managed
internalcall
The following is the same method imported for PInvoke
..method public hidebysig static pinvokeimpl("kernel32.dll") int32
GetTickCount() cil managed
*internalcall* from the Environment class means that the method
implementation is provided form the CLR.
How do you know what is the implementation of this method?
In 17 days if I in meanwile don't restart my machine I'll give it a test
