Decimal.Modulus(Decimal, Decimal) Operador

Definição

Retorna o resto da divisão de dois valores Decimal especificados.Returns the remainder resulting from dividing two specified Decimal values.

public:
 static System::Decimal operator %(System::Decimal d1, System::Decimal d2);
public static decimal operator % (decimal d1, decimal d2);
static member ( % ) : decimal * decimal -> decimal
Public Shared Operator Mod (d1 As Decimal, d2 As Decimal) As Decimal

Parâmetros

d1
Decimal

O dividendo.The dividend.

d2
Decimal

O divisor.The divisor.

Retornos

Decimal

O resto da divisão de d1 por d2.The remainder resulting from dividing d1 by d2.

Exceções

d2 é zero.d2 is zero.

O valor de retorno é menor que MinValue ou maior que MaxValue.The return value is less than MinValue or greater than MaxValue.

Comentários

O Modulus operador define a operação restante que retorna o resto resultante da divisão de dois Decimal valores especificados.The Modulus operator defines the remainder operation that returns the remainder resulting from dividing two specified Decimal values. Ele permite que o código seja o seguinte:It enables code such as the following:

using System;

public class Example
{
   public static void Main()
   {
      Decimal number1 = 16.8m;
      Decimal number2 = 4.1m;
      Decimal number3 = number1 % number2;
      Console.WriteLine("{0:N2} % {1:N2} = {2:N2}",
                        number1, number2, number3);
   }
}
// The example displays the following output:
//        16.80 % 4.10 = 0.40
Module Example
   Public Sub Main()
      Dim number1 As Decimal = 16.8d 
      Dim number2 As Decimal = 4.1d 
      Dim number3 As Decimal = number1 Mod number2
      Console.WriteLine("{0:N2} Mod {1:N2} = {2:N2}", 
                        number1, number2, number3)
   End Sub
End Module
' The example displays the following output:
'       16.80 Mod 4.10 = 0.40

O sinal do valor retornado pela operação restante depende do sinal de dividendo.The sign of the value returned by the remainder operation depends on the sign of dividend. Se o dividendo for positivo, a operação restante retornará um resultado positivo; Se for negativo, a operação restante retornará um resultado negativo.If dividend is positive, the remainder operation returns a positive result; if it is negative, the remainder operation returns a negative result.

O método equivalente para esse operador é Decimal.Remainder(Decimal, Decimal) .The equivalent method for this operator is Decimal.Remainder(Decimal, Decimal). Se o idioma que você está usando não oferecer suporte a operadores personalizados, chame o Remainder método em vez disso.If the language you're using doesn't support custom operators, call the Remainder method instead.

Aplica-se a

Confira também