checked和unchecked转换

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