NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Char.IsUnicodeIdentifierPart

Determines whether the specified character can be part of a Unicode identifier.

[Visual Basic]
Public Shared Function IsUnicodeIdentifierPart( _
   ByVal c As Char _
) As Boolean
[C#]
public static bool IsUnicodeIdentifierPart(
   char c
);
[C++]
public: static bool IsUnicodeIdentifierPart(
   __wchar_t c
);
[JScript]
public static function IsUnicodeIdentifierPart(
   c : Char
) : Boolean;

Parameters

c
The character to examine.

Return Value

true if the character can be part of a Unicode identifier, otherwise false.

Remarks

This method has not been implemented yet.

See Also

Char Structure | Char Members | System Namespace | Boolean | Encoding | UnicodeEncoding