Share via


CSharpHelpers.IsIdentifierPart Method

This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Determines whether the specified character can be used for identifier.

Namespace:  System.Web.Razor.Tokenizer
Assembly:  System.Web.Razor (in System.Web.Razor.dll)

Syntax

'Declaration
Public Shared Function IsIdentifierPart ( _
    character As Char _
) As Boolean
'Usage
Dim character As Char 
Dim returnValue As Boolean 

returnValue = CSharpHelpers.IsIdentifierPart(character)
public static bool IsIdentifierPart(
    char character
)
public:
static bool IsIdentifierPart(
    wchar_t character
)
static member IsIdentifierPart : 
        character:char -> bool
public static function IsIdentifierPart(
    character : char
) : boolean

Parameters

Return Value

Type: System.Boolean
true if the specified character can be used for identifier; otherwise, false.

See Also

Reference

CSharpHelpers Class

System.Web.Razor.Tokenizer Namespace