LARGE_INTEGER Structure
Visual Studio 2015
Represents a 64-bit signed integer.
Assembly: Microsoft.VisualStudio.OLE.Interop (in Microsoft.VisualStudio.OLE.Interop.dll)
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | (Inherited from ValueType.) |
![]() | GetHashCode() | (Inherited from ValueType.) |
![]() | GetType() | (Inherited from Object.) |
![]() | ToString() | (Inherited from ValueType.) |
// 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);
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Show:

