2 writes to dwHighDateTime
System.Private.Windows.Core (1)
Windows\Win32\Foundation\FILETIME.cs (1)
12dwHighDateTime = (uint)(ft >> 32);
System.Windows.Forms.Primitives.Tests (1)
Interop\Kernel32\FILETIMETests.cs (1)
41dwHighDateTime = 30812454u
3 references to dwHighDateTime
System.Private.Windows.Core (1)
Windows\Win32\Foundation\FILETIME.cs (1)
15public readonly DateTime ToDateTime() => DateTime.FromFileTime(((long)dwHighDateTime << 32) + dwLowDateTime);
System.Windows.Forms.Primitives.Tests (2)
Interop\Kernel32\FILETIMETests.cs (2)
23Assert.Equal(0u, ft.dwHighDateTime); 32Assert.Equal(30812454u, ft.dwHighDateTime);