20

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

Example:

long x = 123;
Int64 x = 123;
James World
  • 27,233
  • 7
  • 80
  • 112
curious coder
  • 451
  • 1
  • 4
  • 9

1 Answers1

22

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

James World
  • 27,233
  • 7
  • 80
  • 112