FreeBASIC <-> C# | 64-bit integer
FreeBASIC  Used keywords: longint 
longint
Description
 longintExamples
FreeBASIC
64-bit integer the possible of use:xmin = -9223372036854775808
 ymax = 9223372036854775807
Dim x As longint= -82345        ' x = -82345
Dim y As longint= -(1512345 \ 70)' y = -21604
y = ClngInt((x * y))     ' z = 1778981380.
C#  Used keywords: long 
long
Description
 longExamples
C#
64-bit integer the possible of use:xmin = -9223372036854775808; ymax = 9223372036854775807;
long x= -82345;        // x = -82345
long y = -(1512345 / 70);// y = -21604
y = (long)(x * y);     // z = 1778981380FreeBASIC  Used keywords: longint 
longint
Description
 longintExamples
FreeBASIC
64-bit integer the possible of use:xmin = -9223372036854775808
 ymax = 9223372036854775807
Dim x As longint= -82345        ' x = -82345
Dim y As longint= -(1512345 \ 70)' y = -21604
y = ClngInt((x * y))     ' z = 1778981380.
C#  Used keywords: int64 
Int64
Description
 Int64Examples
C#
64-bit integer the possible of use:xmin = -9223372036854775808; ymax = 9223372036854775807;
Int64 x= -82345;        // x = -82345
Int64 y = -(1512345 / 70);// y = -21604
y = (Int64)(x * y);     // z = 1778981380You can find it in the following collections: signed integers | integers | numbers | data types
64-bit integer in another programming language:
Differences to: