下面的代码如何生成输出 -2147483648。我知道 int.maxvalue 是 2147483647。
class Program
{
static void Main(string[] args)
{
int i = int.MaxValue;
i += 1;
Console.Read();
}
}