Decimal.MaxValue フィールド
アセンブリ: mscorlib (mscorlib.dll 内)



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

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDecimal.MaxValue フィールドを検索する場合は、下記のリンクをクリックしてください。

- Decimal.MaxValue フィールドのページへのリンク