Decimal.MaxValue Campo
Definición
public: static initonly System::Decimal MaxValue;
public static readonly decimal MaxValue;
staticval mutable MaxValue : decimal
Public Shared ReadOnly MaxValue As Decimal
Valor de campo
Ejemplos
En el ejemplo de código siguiente se muestra el uso de MaxValue
:The following code sample illustrates the use of MaxValue
:
public ref class PiggyBank
{
public:
Decimal Capacity()
{
return MyFortune.MaxValue;
}
void AddPenny()
{
MyFortune = Decimal::Add(MyFortune, (Decimal).01);
}
protected:
Decimal MyFortune;
};
}
class PiggyBank {
public decimal Capacity {
get {
return Decimal.MaxValue;
}
}
protected decimal MyFortune;
public void AddPenny() {
MyFortune += .01m;
}
}
Class PiggyBank
Public ReadOnly Property Capacity() As Decimal
Get
Return [Decimal].MaxValue
End Get
End Property
Protected MyFortune As Decimal
Public Sub AddPenny()
MyFortune += 0.01D
End Sub
End Class
Comentarios
El valor de esta constante es positivo 79.228.162.514.264.337.593.543.950.335.The value of this constant is positive 79,228,162,514,264,337,593,543,950,335.