UInt32.MinValue 필드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
UInt32의 가능한 최소값을 나타냅니다. 이 필드는 상수입니다.
public: System::UInt32 MinValue = 0;
public const uint MinValue = 0;
val mutable MinValue : uint32
Public 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입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET