Nullable.Compare<T>(Nullable<T>, Nullable<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Compares the relative values of two Nullable<T> objects.
public:
generic <typename T>
where T : value class static int Compare(Nullable<T> n1, Nullable<T> n2);
public static int Compare<T> (T? n1, T? n2) where T : struct;
[System.Runtime.InteropServices.ComVisible(true)]
public static int Compare<T> (T? n1, T? n2) where T : struct;
static member Compare : Nullable<'T (requires 'T : struct)> * Nullable<'T (requires 'T : struct)> -> int (requires 'T : struct)
[<System.Runtime.InteropServices.ComVisible(true)>]
static member Compare : Nullable<'T (requires 'T : struct)> * Nullable<'T (requires 'T : struct)> -> int (requires 'T : struct)
Public Shared Function Compare(Of T As Structure) (n1 As Nullable(Of T), n2 As Nullable(Of T)) As Integer
Type Parameters
- T
The underlying value type of the n1
and n2
parameters.
Parameters
- n1
- Nullable<T>
A Nullable<T> object.
- n2
- Nullable<T>
A Nullable<T> object.
Returns
An integer that indicates the relative values of the n1
and n2
parameters.
Return Value | Description |
---|---|
Less than zero | The HasValue property for n1 is false , and the HasValue property for n2 is true , or the HasValue properties for n1 and n2 are true , and the value of the Value property for n1 is less than the value of the Value property for n2 .
|
Zero | The HasValue properties for n1 and n2 are false , or the HasValue properties for n1 and n2 are true , and the value of the Value property for n1 is equal to the value of the Value property for n2 .
|
Greater than zero | The HasValue property for n1 is true , and the HasValue property for n2 is false , or the HasValue properties for n1 and n2 are true , and the value of the Value property for n1 is greater than the value of the Value property for n2 .
|
- Attributes
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET