[]
Transforms the specified character to a full width character if possible. Ranges are Latin basic, Katakana and Hangul characters.
public static char ToFullWidth(char c)
Type | Name | Description |
---|---|---|
char | c | A Unicode character. |
Type | Description |
---|---|
char | Full width character of c, otherwise original character returned. |
Tansforms the specified character to a full width character if possible. This method differs from the other where it takes on an array of characters. In FarEast country there are times when multiple half width characters make a one full width character.
public static char ToFullWidth(out bool processedAll, params char[] c)
Type | Name | Description |
---|---|---|
bool | processedAll | When the soundex character is processed a true is returned; otherwise, a false returned. |
char[] | c | An array of characters. |
Type | Description |
---|---|
char | Full width character of c, otherwise the original character is returned. |