[]
Indicates whether the specified Unicode character is categorized as a Katakana letter.
public static bool IsKatakana(char c)
Public Shared Function IsKatakana(c As Char) As Boolean
| Type | Name | Description |
|---|---|---|
| char | c | A Unicode character. |
| Type | Description |
|---|---|
| bool | true if c is a Katakana character; otherwise, false. |
Indicates wether the character at the specified position in the specified string is a Katakana character.
public static bool IsKatakana(string s, int index)
Public Shared Function IsKatakana(s As String, index As Integer) As Boolean
| Type | Name | Description |
|---|---|---|
| string | s | A string. |
| int | index | The character position in s. |
| Type | Description |
|---|---|
| bool | true if the character at position index in s is a Katakana character; otherwise, false. |