UInt32.MinValue Champ
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Représente la plus petite valeur possible de UInt32. Ce champ est constant.
public: System::UInt32 MinValue = 0;
public const uint MinValue = 0;
val mutable MinValue : uint32
Public Const MinValue As UInteger = 0
Valeur de champ
Value = 0Exemples
L’exemple suivant montre comment utiliser le MinValue champ pour afficher la plus petite valeur possible d’une UInt32 variable.
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
Remarques
La valeur de cette constante est 0.
S’applique à
Voir aussi
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.