Partager via


UsingDirectiveSyntax.Name Propriété

Définition

Retourne le nom vers lequel il UsingDirectiveSyntax pointe ou null s’il ne pointe pas vers un nom. Une valeur normale using X.Y.Z; ou using static X.Y.Z; pointe toujours vers un nom et retourne toujours une valeur pour cela. Toutefois, un using-alias (par exemple using x = ...;, ) peut pointer ou non vers un nom et peut revenir null ici. Un exemple de quand cela peut se produire est le type sur le côté droit du n’est = pas un nom. Par exemple, using x = (X.Y.Z, A.B.C);. Ici, comme le type est un type tuple, il n’y a pas de nom à retourner.

public:
 property Microsoft::CodeAnalysis::CSharp::Syntax::NameSyntax ^ Name { Microsoft::CodeAnalysis::CSharp::Syntax::NameSyntax ^ get(); };
public Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax Name { get; }
public Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax? Name { get; }
member this.Name : Microsoft.CodeAnalysis.CSharp.Syntax.NameSyntax
Public ReadOnly Property Name As NameSyntax

Valeur de propriété

S’applique à