[Tip: check overflow/underflow C#]

C# provides two operators: CHECKED/UNCHECKED to handle whether to treat the overflow/underflow as system error or ignore it. By default, this option is unchecked. As an alternative,

you can set this as a global setting in project setting like below:

[Tip: check overflow/underflow C#]_第1张图片

你可能感兴趣的:(overflow)