Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In C# What's the difference between Int64 and long? [duplicate]

Tags:

In C#, what is the difference between Int64 and long?

Example:

long x = 123; Int64 x = 123; 
like image 416
curious coder Avatar asked Apr 26 '16 22:04

curious coder


People also ask

What is '~' in C language?

In mathematics, the tilde often represents approximation, especially when used in duplicate, and is sometimes called the "equivalency sign." In regular expressions, the tilde is used as an operator in pattern matching, and in C programming, it is used as a bitwise operator representing a unary negation (i.e., "bitwise ...

What is operators in C?

C operators are one of the features in C which has symbols that can be used to perform mathematical, relational, bitwise, conditional, or logical manipulations. The C programming language has a lot of built-in operators to perform various tasks as per the need of the program.


1 Answers

There is no difference in the compiled code. They are aliases for the same thing.

like image 150
James World Avatar answered Sep 29 '22 08:09

James World