UInt32.MinValue 字段 
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示 UInt32 的最小可能值。 此字段为常数。
public: System::UInt32 MinValue = 0;public const uint MinValue = 0;val mutable MinValue : uint32Public Const MinValue As UInteger  = 0字段值
Value = 0示例
以下示例演示如何使用 MinValue 字段显示变量的 UInt32 最小可能值。
   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 {
    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;
        }
    }
}
type Temperature() =
    // The value holder
    let mutable m_value = 0u
    static member MinValue =
        UInt32.MinValue
    static member MaxValue =
        UInt32.MaxValue
    member _.Value
        with get () =
            m_value
        and set (v) =
            m_value <- v
Public Class Temperature 
     ' The value holder
     Protected m_value As UInteger
     Public Shared ReadOnly Property MinValue As UInteger
         Get 
             Return UInt32.MinValue
         End Get
     End Property
     Public Shared ReadOnly Property MaxValue As UInteger
         Get 
             Return UInt32.MaxValue
         End Get
     End Property
     Public Property Value As UInteger
         Get 
             Return Me.m_value
         End Get
         Set 
             Me.m_value = value
         End Set
     End Property
End Class
注解
此常量的值为 0。