janice
0
Q:

c# long to int

int result =  Convert.ToInt32(long value);
0
// wraps around
int myIntValue = unchecked((int)myLongValue);

// throws OverflowException
Convert.ToInt32(myValue);
0

New to Communities?

Join the community