📜  c# 将 long 转换为 int - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:08.534000             🧑  作者: Mango

代码示例2
// wraps around
int myIntValue = unchecked((int)myLongValue);

// throws OverflowException
Convert.ToInt32(myValue);