ULARGE_INTEGER.QuadPart Field

Definition

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);  

Applies to