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



public class Temperature { public static ulong MinValue { get { return UInt64.MinValue; } } public static ulong MaxValue { get { return UInt64.MaxValue; } } // The value holder protected ulong m_value; public ulong Value { get { return m_value; } set { m_value = value; } } }
public ref class Temperature { public: static property Int64 MinValue { Int64 get() { return UInt64::MinValue; } } static property UInt64 MaxValue { UInt64 get() { return UInt64::MaxValue; } } protected: // The value holder UInt64 m_value; public: property UInt64 Value { UInt64 get() { return m_value; } void set( UInt64 value ) { m_value = value; } } }; }
public class Temperature { /** @property */ public static long get_MinValue() { return System.Convert.ToInt64(UInt64.MinValue); } //get_MinValue /** @property */ public static long get_MaxValue() { return System.Convert.ToInt64(UInt64.MaxValue); } //get_MaxValue // The value holder protected long mValue; /** @property */ public long get_Value() { return mValue; } //get_Value /** @property */ public void set_Value(long value) { mValue = value; } //set_Value } //Temperature
public class Temperature { public static function get MinValue() : ulong { return UInt64.MinValue; } public static function get MaxValue() : ulong { return UInt64.MaxValue; } // The value holder protected var m_value : ulong ; public function get Value() : ulong { return m_value; } public function set Value(value : ulong) { m_value = value; } }

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に収録されているすべての辞書からUInt64.MaxValue フィールドを検索する場合は、下記のリンクをクリックしてください。

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