views:

52

answers:

1

Based upon this question How to declarate LARGE_INTEGER in C# with answer of:

[StructLayout(LayoutKind.Absolute, Size=8)]
struct LARGE_INTEGER
{
    [FieldOffset(0)]public Int64 QuadPart;
    [FieldOffset(0)]public UInt32 LowPart;
    [FieldOffset(4)]public Int32 HighPart;
}

Is my assumption below for declaring ULARGE_INTEGER correct?

[StructLayout(LayoutKind.Explicit, Size = 8)]
public struct ULARGE_INTEGER
{
    [FieldOffset(0)] public UInt64 QuadPart;
    [FieldOffset(0)] public UInt32 LowPart;
    [FieldOffset(4)] public UInt32 HighPart;
}
+1  A: 

It is simply an ulong in C#, no need to jump through the LayoutKind.Explicit hoop. The union was necessary because C and C++ compilers didn't have a native 64-bit type in the olden days.

Hans Passant
So just swap out all declarations for `UInt64` (`ulong`) and it should be ok?
Codesleuth
Just completely forget about the structure declaration.
Hans Passant
Excellent, thanks! I'm ditching `LARGE_INTEGER` for `Int64` too.
Codesleuth