SyntaxFactory.NothingLiteralExpression(SyntaxToken) Méthode
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.
Représente un littéral. Le type de littéral est déterminé par la propriété Kind : IntegerLiteral, CharacterLiteral, BooleanLiteral, DecimalLiteral, FloatingLiteral, DateLiteral ou StringLiteral. La valeur du littéral peut être déterminée en faisant passer le jeton associé au type correct et en obtenant la valeur du jeton.
public:
static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ NothingLiteralExpression(Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax NothingLiteralExpression (Microsoft.CodeAnalysis.SyntaxToken token);
static member NothingLiteralExpression : Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function NothingLiteralExpression (token As SyntaxToken) As LiteralExpressionSyntax
Paramètres
- token
- SyntaxToken
Jeton qui représente le littéral. La propriété Kind détermine le type retourné par cette propriété : Kind=IntegerLiteral ==> Renvoie IntegerLiteralToken. Kind=CharacterLiteral ==> Renvoie CharacterLiteralToken. Kind=DecimalLiteral == Renvoie DecimalLiteralToken Kind=FloatingLiteral ==> Renvoie FloatingLiteralToken Kind=DateLiteral ==>> Renvoie DateLiteralToken Kind=StringLiteral ==> Renvoie stringLiteralToken Kind=BooleanLiteral ==> Renvoie le mot clé (avec le type TrueKeyword ou FalseKeyword) Kind=NothingLiteral ==> Renvoie le mot clé (avec le type NothingKeyword)