29

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

Example:

long x = 123;
Int64 x = 123;
James World
  • 29,019
  • 9
  • 86
  • 120
curious coder
  • 831
  • 1
  • 8
  • 13

1 Answers1

31

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

James World
  • 29,019
  • 9
  • 86
  • 120