This documentation is archived and is not being maintained.
Decimal.MaxValue Field
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the largest possible value of Decimal. This field is constant and read-only.
Namespace:
System
Assembly:
mscorlib (in mscorlib.dll)
public static readonly decimal MaxValue
The value of this constant is positive 79,228,162,514,264,337,593,543,950,335.
The following code sample illustrates the use of MaxValue:
class PiggyBank
{
public decimal Capacity
{
get
{
return Decimal.MaxValue;
}
}
protected decimal MyFortune;
public void AddPenny()
{
MyFortune += .01m;
}
}
Windows Phone OS
Supported in: 8.1, 8.0, 7.1, 7.0