[]
        
(Showing Draft Content)

C1.Framework.CharHelper.ToFullWidth

ToFullWidth Method

ToFullWidth(char)

Transforms the specified character to a full width character if possible. Ranges are Latin basic, Katakana and Hangul characters.

Declaration
public static char ToFullWidth(char c)
Parameters
Type Name Description
char c

A Unicode character.

Returns
Type Description
char

Full width character of c, otherwise original character returned.

ToFullWidth(out bool, params char[])

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.

Declaration
public static char ToFullWidth(out bool processedAll, params char[] c)
Parameters
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.

Returns
Type Description
char

Full width character of c, otherwise the original character is returned.