UsingDirectiveSyntax.Name Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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