Share via


ULARGE_INTEGER.QuadPart Field

Namespace:  Microsoft.VisualStudio.OLE.Interop
Assembly:  Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)

Syntax

'Declaration
Public QuadPart As ULong
public ulong QuadPart
public:
unsigned long long QuadPart
val mutable QuadPart: uint64
public var QuadPart : ulong

Examples

// rewind an IStream to the beginning
LARGE_INTEGER offset = new LARGE_INTEGER();
offset.QuadPart = 0;
ULARGE_INTEGER[] resultingPosition = new ULARGE_INTEGER[1];
resultingPosition[0] = new ULARGE_INTEGER();
_stream.Seek(offset, (uint) SeekOrigin.Begin, resultingPosition);

.NET Framework Security

See Also

Reference

ULARGE_INTEGER Structure

Microsoft.VisualStudio.OLE.Interop Namespace