Add<TLeft,TRight,TResult>.Checked 属性

定义

获取或设置一个值,该值指示加运算是否在 checked 上下文中执行。

public:
 property bool Checked { bool get(); void set(bool value); };
public bool Checked { get; set; }
member this.Checked : bool with get, set
Public Property Checked As Boolean

属性值

Boolean

如果加运算在所检查的上下文中执行,则为 true;否则为 false。 默认值为 true

注解

默认情况下,Add<TLeft,TRight,TResult> 活动在 checked 上下文中执行,并在加运算导致溢出的情况下引发 OverflowException

适用于