We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e03470 commit a1b47e5Copy full SHA for a1b47e5
src/EmberLibConsumer.net/Lawo/Threading/NativeMethods.cs
@@ -22,9 +22,9 @@ public static class NativeMethods
22
//[DllImport("Kernel32.dll")]
23
//public static extern uint GetCurrentThreadId();
24
25
- public static int GetCurrentThreadId()
+ public static uint GetCurrentThreadId()
26
{
27
- return System.Threading.Thread.CurrentThread.ManagedThreadId;
+ return Convert.ToUInt32(System.Threading.Thread.CurrentThread.ManagedThreadId);
28
}
29
30
0 commit comments