ULARGE_INTEGER::QuadPart Field
Visual Studio 2015
Namespace:
Microsoft.VisualStudio.OLE.Interop
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
Return to top
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
public: [ComAliasNameAttribute("Microsoft.VisualStudio.OLE.Interop.ULONGLONG")] unsigned long long QuadPart
Field Value
Type: System::UInt64// 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);
Show: