Decimal.MaxValue Pole

Definice

Představuje největší možnou hodnotu Decimal . Toto pole je konstantní a jen pro čtení.

public: static initonly System::Decimal MaxValue;
public static readonly decimal MaxValue;
 staticval mutable MaxValue : decimal
Public Shared ReadOnly MaxValue As Decimal 

Hodnota pole

Decimal

Příklady

Následující příklad kódu ukazuje použití 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

Poznámky

Hodnota této konstanty je kladné 79,228,162,514,264,337,593,543,950,335.

Platí pro

Viz také