Rune.GreaterThanOrEqual(Rune, Rune) 运算符
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public:
static bool operator >=(System::Text::Rune left, System::Text::Rune right);
public static bool operator >= (System.Text.Rune left, System.Text.Rune right);
static member ( >= ) : System.Text.Rune * System.Text.Rune -> bool
Public Shared Operator >= (left As Rune, right As Rune) As Boolean
参数
- left
- Rune
要比较的第一个值。
- right
- Rune
要比较的第二个值。
返回
如果 left
大于等于 right
,则为 true
;否则为 false
。