SyntaxFactory.NumericLiteralExpression(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 cas de conversion du jeton associé vers le type correct et en obtenant la valeur du jeton.
public:
static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ NumericLiteralExpression(Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax NumericLiteralExpression (Microsoft.CodeAnalysis.SyntaxToken token);
static member NumericLiteralExpression : Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function NumericLiteralExpression (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 ==> Returns Keyword (avec le type TrueKeyword ou FalseKeyword) Kind=NothingLiteral ==> Returns Keyword (avec le type NothingKeyword)