Single.LessThanOrEqual(Single, Single) Operador

Definição

Retorna um valor que indica se um valor Single especificado é menor ou igual a outro valor Single especificado.Returns a value that indicates whether a specified Single value is less than or equal to another specified Single value.

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

Boolean

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.

Aplica-se a