long long int in java code example
Example 1: long to int java 8
import static java.lang.Math.toIntExact;
long foo = 10L;
int bar = toIntExact(foo);
Example 2: c# long to int
int result = Convert.ToInt32(long value);
import static java.lang.Math.toIntExact;
long foo = 10L;
int bar = toIntExact(foo);
int result = Convert.ToInt32(long value);