UInt32.MinValue フィールドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > UInt32.MinValue フィールドの意味・解説 

UInt32.MinValue フィールド

UInt32最小有効値を表します。このフィールド定数です。

このフィールドは、CLS準拠していません。  

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Const MinValue As
 UInteger
Dim value As UInteger

value = UInteger.MinValue
public const uint MinValue
public:
literal unsigned int MinValue
public static final UInt32 MinValue
public const var MinValue
 : uint
解説解説

この定数の値は 0 です。

使用例使用例
public class Temperature {
    public static uint MinValue {
        get {
            return UInt32.MinValue;
        }
    }

    public static uint MaxValue {
        get {
            return UInt32.MaxValue;
        }
    }

    // The value holder
    protected uint m_value;

    public uint Value {
        get {
            return m_value;
        }
        set {
            m_value = value;
        }
    }
}
   public ref class Temperature
   {
   public:
      static property UInt32 MinValue 
      {
         UInt32 get()
         {
            return UInt32::MinValue;
         }
      }

      static property UInt32 MaxValue 
      {
         UInt32 get()
         {
            return UInt32::MaxValue;
         }
      }

   protected:
      // The value holder
      UInt32 m_value;

   public:
      property UInt32 Value 
      {
         UInt32 get()
         {
            return m_value;
         }
         void set( UInt32 value )
         {
            m_value = value;
         }
      }
   };
}
public class Temperature
{
    /** @property 
     */
    public static int get_MinValue()
      
    {
        return System.Convert.ToInt32(UInt32.MinValue);
    } //get_MinValue

    /** @property 
     */
    public static int get_MaxValue()
        
    {
        return System.Convert.ToInt32(UInt32.MaxValue);
    } //get_MaxValue

    // The value holder
    protected int mValue;
   
    /** @property 
     */
    public int get_Value()        
    {
        return mValue;
    } //get_Value

    /** @property 
     */
    public void set_Value(int
 value)        
    {
        mValue = value;
    } //set_Value
} //Temperature
public class Temperature {
    public static function
 get MinValue() : uint {
        return UInt32.MinValue;
    }

    public static function
 get MaxValue() : uint {
        return UInt32.MaxValue;
    }

    // The value holder
    protected var m_value : uint ;

    public function get
 Value() : uint {
        return m_value;
            }
            
            public function set
 Value(value : uint) {                        
        m_value = value;
    }

}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「UInt32.MinValue フィールド」の関連用語

UInt32.MinValue フィールドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



UInt32.MinValue フィールドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS