Nullable<T>.Explicit(Nullable<T> to T) Operátor

Definíció

Egy példány explicit átalakítását Nullable<T> határozza meg annak mögöttes értékére.

public:
 static explicit operator T(Nullable<T> value);
public static explicit operator T(T? value);
static member op_Explicit : Nullable<'T (requires 'T : struct)> -> 'T
Public Shared Narrowing Operator CType (value As Nullable(Of T)) As T

Paraméterek

value
Nullable<T>

Null értékű.

Válaszok

T

A paraméter tulajdonságának Valuevalue értéke.

Példák

Az Explicit operátor engedélyezi az alábbi kódhoz hasonló kódot, amely egy Nullable(Of Int32) értéket értékké Int32 alakít át.

using System;

public class Example
{
   public static void Main()
   {
       var nullInt = new Nullable<int>(172);
       // Convert with CInt conversion method.
       Console.WriteLine((int)nullInt);
       // Convert with Convert.ChangeType.
       Console.WriteLine(Convert.ChangeType(nullInt, typeof(int)));
   }
}
// The example displays the following output:
//       172
//       172
open System

let nullInt = Nullable 172
// Convert with int conversion function.
printfn $"{int nullInt}"
// Convert with Convert.ChangeType.
printfn $"{Convert.ChangeType(nullInt, typeof<int>)}"
// The example displays the following output:
//       172
//       172
Module Example
   Public Sub Main()
       Dim nullInt = New Nullable(Of Integer)(172)
       ' Convert with CInt conversion method.
       Console.WriteLine(CInt(nullInt))
       ' Convert with CType conversion method.
       Console.WriteLine(CType(nullInt, Integer))
       ' Convert with Convert.ChangeType.
       Console.WriteLine(Convert.ChangeType(nullInt, GetType(Integer)))
   End Sub
End Module
' The example displays the following output:
'       172
'       172
'       172

Megjegyzések

Ez az operátor támogatja az aktuális Nullable<T> példány típusra Tvaló explicit átalakítását , a típust Value. Az ilyen explicit konverziók szintaxisa nyelvfüggő. Előfordulhat, hogy a metódus meghívásával is végrehajthatja az átalakítást Convert.ChangeType .

Ennek az operátornak az egyenértékű metódusa a következő: Nullable<T>.Value

A következőre érvényes: