LARGE_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.
Represents a 64-bit signed integer.
public: long QuadPart;
public: long long QuadPart;
long QuadPart;
[System.Runtime.InteropServices.ComAliasName("Microsoft.VisualStudio.OLE.Interop.LONGLONG")]
public long QuadPart;
[<System.Runtime.InteropServices.ComAliasName("Microsoft.VisualStudio.OLE.Interop.LONGLONG")>]
val mutable QuadPart : int64
Public QuadPart As Long
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);