Decimal.MaxValue-Feld
Stellt den größtmöglichen Wert von Decimal dar. Dieses Feld ist konstant und schreibgeschützt.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly MaxValue As Decimal
'Usage
Dim value As Decimal
value = Decimal.MaxValue
public static readonly decimal MaxValue
public:
static initonly Decimal MaxValue
public static final Decimal MaxValue
public static final var MaxValue : decimal
Hinweise
Der Wert dieser Konstanten ist +79.228.162.514.264.337.593.543.950.335.
Beispiel
Das folgende Codebeispiel veranschaulicht die Verwendung von MaxValue.
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
class PiggyBank {
public decimal Capacity {
get {
return Decimal.MaxValue;
}
}
protected decimal MyFortune;
public void AddPenny() {
MyFortune += .01m;
}
}
public ref class PiggyBank
{
public:
Decimal Capacity()
{
return MyFortune.MaxValue;
}
void AddPenny()
{
MyFortune = Decimal::Add(MyFortune, (Decimal).01);
}
protected:
Decimal MyFortune;
};
}
class PiggyBank
{
/** @property
*/
public System.Decimal get_Capacity()
{
return System.Decimal.MaxValue;
} //get_Capacity
protected System.Decimal myFortune;
public void AddPenny()
{
myFortune.Add(myFortune, System.Convert.ToDecimal(0.01));
} //AddPenny
} //PiggyBank
class PiggyBank {
public function get Capacity() : Decimal {
return Decimal.MaxValue;
}
protected var MyFortune : Decimal;
public function AddPenny() {
MyFortune = Decimal.Add(MyFortune, 0.01);
}
}
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
Decimal-Struktur
Decimal-Member
System-Namespace
Zero
One
MinusOne
MinValue