Single.LessThanOrEqual(Single, Single) Operador
Definição
public:
static bool operator <=(float left, float right);
public static bool operator <= (float left, float right);
static member ( <= ) : single * single -> bool
Public Shared Operator <= (left As Single, right As Single) As Boolean
Parâmetros
- left
- Single
O primeiro valor a ser comparado.The first value to compare.
- right
- Single
O segundo valor a ser comparado.The second value to compare.
Retornos
true se left for menor ou igual a right; caso contrário, false.true if left is less than or equal to right; otherwise, false.
Comentários
O LessThanOrEqual método define a operação do operador menor que ou igual para Single valores.The LessThanOrEqual method defines the operation of the less-than-or-equal operator for Single values.