ULARGE_INTEGER.QuadPart Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public: System::UInt64 QuadPart;
public: unsigned long long QuadPart;
unsigned long QuadPart;
[System.Runtime.InteropServices.ComAliasName("Microsoft.VisualStudio.OLE.Interop.ULONGLONG")]
public ulong QuadPart;
[<System.Runtime.InteropServices.ComAliasName("Microsoft.VisualStudio.OLE.Interop.ULONGLONG")>]
val mutable QuadPart : uint64
Public QuadPart As ULong
Field Value
- Attributes
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);