I have an int array like this
int[] arr = {256741038,623958417,467905213,714532089,938071625};
and then I created an int64 var
Int64 sum = arr.Sum();
But this reslted in an overflow
Run-time exception (line 19): Arithmetic operation resulted in an overflow.
How can I solve this problem without using loop to sum it up ? (array type must be int)