Die Frage ist einfach! Wie repräsentieren Sie einen 64-Bit-Int in C #?
64 Bit int ist lang
System.Int64 ist der .net-Typ, in C # wird es auch lange
Eine vorzeichenbehaftete 64-Bit-Ganzzahl ist long , eine vorzeichenlose ist ulong .
long
ulong
Die entsprechenden Typen im framwork sind System.Int64 bzw. System.UInt64 .
System.Int64
System.UInt64
Beispiel:
Verwenden Sie den Datentyp long oder ulong für unsigned.
Tabelle der integralen C # -Typen
Tags und Links c# 64bit integer int64 representation