
static unsafe void Main(string[] args)
{
unchecked //checked 运行时候引发异常
{
int n = int.MaxValue;
n++;
Console.WriteLine(n);
}
Console.ReadKey();
}