Huh that’s ironic ,while playing around today i wondered if a can Increase Int64.MaxValue on some way ,and just founded out that Int64.MaxValue isn’t an Int64 but a Long .
Why is that ,does it mean if i store like Int64 myInt = Int64.MaxValue; than myInt will be still an Int or it will become a Long ,what’s the purpose of storing a Long Instead of Int64 at this Field .
Because Int64 and long are same type.