Auf Englisch lesen Bearbeiten

Freigeben über


Decimal.MaxValue Field

Definition

Represents the largest possible value of Decimal. This field is constant and read-only.

public static readonly decimal MaxValue;

Field Value

Examples

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;
    }
}

Remarks

The value of this constant is positive 79,228,162,514,264,337,593,543,950,335.

Applies to

See also