Nullable<T>.Explicit(Nullable<T> to T) Operador
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Define uma conversão explícita de uma instância Nullable<T> para seu valor subjacente.
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
Parâmetros
- value
- Nullable<T>
Um valor anulável.
Retornos
- T
O valor da propriedade Value para o parâmetro value
.
Exemplos
O Explicit operador habilita código como o seguinte, que converte um Nullable(Of Int32)
valor em um Int32 valor.
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
Comentários
Esse operador dá suporte à conversão explícita da instância atual Nullable<T> para digitar T
, o tipo de Value. A sintaxe para essas conversões explícitas depende da linguagem. Você também pode executar a conversão chamando o Convert.ChangeType método.
O método equivalente para esse operador é Nullable<T>.Value