次の方法で共有


SyntaxFactory.LiteralExpression(SyntaxKind, SyntaxToken) メソッド

定義

リテラルを表します。 リテラルの種類は、Kind プロパティ (IntegerLiteral、CharacterLiteral、BooleanLiteral、DecimalLiteral、FloatingLiteral、DateLiteral、StringLiteral) によって決まります。 リテラルの値は、関連付けられている Token を正しい型にキャストし、トークンから値を取得することによって決定できます。

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ LiteralExpression(Microsoft::CodeAnalysis::VisualBasic::SyntaxKind kind, Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax LiteralExpression (Microsoft.CodeAnalysis.VisualBasic.SyntaxKind kind, Microsoft.CodeAnalysis.SyntaxToken token);
static member LiteralExpression : Microsoft.CodeAnalysis.VisualBasic.SyntaxKind * Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function LiteralExpression (kind As SyntaxKind, token As SyntaxToken) As LiteralExpressionSyntax

パラメーター

kind
SyntaxKind

SyntaxKind LiteralExpressionSyntax の特定の種類を表す 。 CharacterLiteralExpression、TrueLiteralExpression、FalseLiteralExpression、NumericLiteralExpression、DateLiteralExpression、StringLiteralExpression、NothingLiteralExpression のいずれか。

token
SyntaxToken

リテラルを表すトークン。 Kind プロパティは、このプロパティが返す型を決定します。 Kind=IntegerLiteral ==> IntegerLiteralToken を返します。 Kind=CharacterLiteral ==> CharacterLiteralToken を返します。 Kind=DecimalLiteral ==> Returns DecimalLiteralToken Kind=FloatingLiteral ==> Returns FloatingLiteralToken Kind=DateLiteral ==> Returns DateLiteralToken Kind=StringLiteral ==> Returns StringLiteralToken Kind=BooleanLiteral ==> Returns Keyword (TrueKeyword または FalseKeyword) Kind=NothingLiteral ==> Returns Keyword (種類は NothingKeyword)

戻り値

適用対象