Partilhar via


NameOf operador - Visual Basic

O NameOf operador obtém o nome de uma variável, tipo ou membro como a constante de cadeia de caracteres:

Console.WriteLine(NameOf(System.Collections.Generic))  ' output: Generic
Console.WriteLine(NameOf(List(Of Integer)))  ' output: List
Console.WriteLine(NameOf(List(Of Integer).Count))  ' output: Count
Console.WriteLine(NameOf(List(Of Integer).Add))  ' output: Add

Dim numbers As New List(Of Integer) From { 1, 2, 3 }
Console.WriteLine(NameOf(numbers))  ' output: numbers
Console.WriteLine(NameOf(numbers.Count))  ' output: Count
Console.WriteLine(NameOf(numbers.Add))  ' output: Add

Como mostra o exemplo anterior, no caso de um tipo e um namespace, o nome produzido geralmente não é totalmente qualificado.

O NameOf operador é avaliado em tempo de compilação e não tem efeito em tempo de execução.

Você pode usar o NameOf operador para tornar o código de verificação de argumentos mais fácil de manter:

Private _name As String

Public Property Name As String
    Get
        Return _name
    End Get
    Set
        If value Is Nothing Then
            Throw New ArgumentNullException(NameOf(value), $"{NameOf(name)} cannot be null.")
        End If
    End Set
End Property

O NameOf operador está disponível no Visual Basic 14 e posterior.

Consulte também