Rune.GreaterThanOrEqual(Rune, Rune) 运算符
定义
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
要比较的第一个值。The first value to compare.
- right
- Rune
要比较的第二个值。The second value to compare.
返回
如果 left 大于等于 right,则为 true;否则为 false。true if left is greater than or equal to right; otherwise, false.