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

14,765

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

Share:
14,765

Related videos on Youtube

curious coder
Author by

curious coder

Updated on July 30, 2022

Comments

  • curious coder
    curious coder almost 2 years

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

    Example:

    long x = 123;
    Int64 x = 123;