共用方式為


SyntaxFactory.CharacterLiteralExpression(SyntaxToken) 方法

定義

表示常值。 常值的類型取決於 Kind 屬性:IntegerLiteral、CharacterLiteral、BooleanLiteral、DecimalLiteral、FloatingLiteral、DateLiteral 或 StringLiteral。 常值的值可以藉由將相關聯的 Token 轉換成正確的型別,並從權杖取得值來決定。

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ CharacterLiteralExpression(Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax CharacterLiteralExpression (Microsoft.CodeAnalysis.SyntaxToken token);
static member CharacterLiteralExpression : Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function CharacterLiteralExpression (token As SyntaxToken) As LiteralExpressionSyntax

參數

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 == > 傳回關鍵字 (,其種類為 TrueKeyword 或 FalseKeyword) Kind=NothingLiteral == > 傳回關鍵字 (,其種類為 NothingKeyword)

傳回

適用於