SystemInt64
System.Int64 is a value type in the .NET framework that represents a 64-bit signed integer. It is the canonical type behind the C# keyword long and is defined in the System namespace as part of the primitive numeric types.
The type uses 8 bytes of storage and its range runs from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807. It
Key members and behavior include MinValue and MaxValue, along with methods such as CompareTo, Equals, GetHashCode,
Usage and semantics: System.Int64 is used when a 64-bit range is required, such as counting large quantities,
See also: System.UInt64, the unsigned 64-bit counterpart; parsing, formatting, and conversions to other numeric types. System.Int64