[]
Converts the value of an ANSI character to it's Unicode equivalent.
public static char FromAnsi(char c)
| Type | Name | Description |
|---|---|---|
| char | c | An ANSI character. |
| Type | Description |
|---|---|
| char | A Unicode character equivalent of c. |
Converts the value of a ANSI character to it's Unicode equivalent using the specified culture information.
public static char FromAnsi(char c, CultureInfo culture)
| Type | Name | Description |
|---|---|---|
| char | c | An ANSI character. |
| CultureInfo | culture | A CultureInfo object. If a null reference is passed, the current culture is assumed. |
| Type | Description |
|---|---|
| char | An Unicode character equivalent of c using the specified culture. |