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;
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
So just swap out all declarations for UInt64 (ulong) and it should be ok? – Codesleuth Jun 16 '10 at 13:25
Just completely forget about the structure declaration. – Hans Passant Jun 16 '10 at 13:28
Excellent, thanks! I'm ditching LARGE_INTEGER for Int64 too. – Codesleuth Jun 16 '10 at 13:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.