Dado un carácter, la tarea es convertir el carácter en la string en C#.
Ejemplos:
Input : X = 'a' Output : string S = "a" Input : X = 'A' Output : string S = "A"
Enfoque: La idea es usar ToString( )
// convert the character x // to string s public string ToString(IFormatProvider provider);
C#
// C# program to character to the string using System; public class GFG{ static string getString(char x) { // Char.ToString() is a System.Char // struct method which is used // to convert the value of this // instance to its equivalent // string representation string str = x.ToString(); return str; } static void Main(string[] args) { char chr = 'A'; Console.WriteLine("Type of "+ chr +" : " + chr.GetType()); string str = getString(chr); Console.WriteLine("Type of "+ str +" : " + str.GetType()); } }
Producción:
Type of A : System.Char Type of A : System.String
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA