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.IsUnicodeIdentifierStart

Determines whether the specified character can start a Unicode identifier.

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

Parameters

c
The character to examine.

Return Value

true if the character can start a Unicode identifier, otherwise false.

Remarks

This method has not been implemented yet.

See Also

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