Diferentes formas de convertir Char Array a String en C#

array de caracteres arr convertir array de caracteres a stringC#

Input: arr = [s, t, r, i, n, g]  
Output: string
  
Input: arr = [G, e, e, k, s, F, o, r, G, e, e, k, s]
Output: GeeksForGeeks

string()

Sintaxis:

string str = new string(character_array);

Ejemplo:

C#

// C# program to convert the
// char array to string
using System;
using System.Text;
  
public class GFG{
      
    static string getString(char[] arr) 
    {
        // string() is a used to 
        // convert the char array
        // to string
        string s = new string(arr);
          
        return s;
    }
    
    static void Main(string[] args)
    {
        // given character array
        char[] arr = {'G', 'e', 'e', 'k', 
        's', 'F', 'o', 'r', 'G', 'e',
        'e', 'k', 's'};
          
        // function calling
        string str = getString(arr);
          
        // printing output
        Console.WriteLine(str);
  
    }
}

Producción:

GeeksForGeeks

Unirse()

Sintaxis:

string str = string.Join("", character_array);

Ejemplo:

C#

// C# program to convert the
// char array to string
using System;
using System.Text;
  
public class GFG{
      
    static string getString(char[] arr) 
    {
        // String.Join() is a used to 
        // convert the char array
        // to string
        string s = string.Join("", arr);
          
        return s;
    }
    
    static void Main(string[] args)
    {
        // given character array
        char[] arr = {'G', 'e', 'e', 'k', 
        's', 'F', 'o', 'r', 'G', 'e',
        'e', 'k', 's'};
          
        // function calling
        string str = getString(arr);
          
        // printing output
        Console.WriteLine(str);
  
    }
}

Producción:

GeeksForGeeks

concat()

Sintaxis:

string str = string.Concat(character_array);

Ejemplo:

C#

// C# program to convert the
// char array to string
using System;
using System.Text;
  
public class GFG{
      
    static string getString(char[] arr) 
    {
        // String.Concat() is a used to 
        // convert the char array
        // to string
        string s = string.Concat(arr);
          
        return s;
    }
    
    static void Main(string[] args)
    {
        // given character array
        char[] arr = {'G', 'e', 'e', 'k', 
        's', 'F', 'o', 'r', 'G', 'e',
        'e', 'k', 's'};
          
        // function calling
        string str = getString(arr);
          
        // printing output
        Console.WriteLine(str);
  
    }
}

Producción:

GeeksForGeeks

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *