LARGE_INTEGER.QuadPart Field
Represents a 64-bit signed integer.
Namespace: Microsoft.VisualStudio.OLE.Interop
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
Syntax
'Declaration
Public QuadPart As Long
public long QuadPart
public:
long long QuadPart
val mutable QuadPart: int64
public var QuadPart : long
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.