LARGE_INTEGER Struct

Definition

Represents a 64-bit signed integer.

C++/CX
public value class LARGE_INTEGER
Inheritance
LARGE_INTEGER

Examples

C#
// 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);  

Fields

QuadPart

Represents a 64-bit signed integer.

Applies to

Produk Versi
Visual Studio SDK 2015, 2017, 2019, 2022