Character.ToString(Char) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a String
object representing the
specified char
.
[Android.Runtime.Register("toString", "(C)Ljava/lang/String;", "")]
public static string ToString (char c);
[<Android.Runtime.Register("toString", "(C)Ljava/lang/String;", "")>]
static member ToString : char -> string
Parameters
- c
- Char
the char
to be converted
Returns
the string representation of the specified char
- Attributes
Remarks
Returns a String
object representing the specified char
. The result is a string of length 1 consisting solely of the specified char
.
Added in 1.4.
Java documentation for java.lang.Character.toString(char)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.