string to array c# code example

Example 1: c# string to character array

string chars = "Array";
char[] letters = chars.toCharArray();

Example 2: c# string array to string

string[] test = new string[2];

test[0] = "Hello ";
test[1] = "World!";

string.Join("", test);

Example 3: making a list of chars in c#

string data = "ABCDEFGHIJ1fFJKAL";
List<char> datalist = new List<char>();
datalist.AddRange(data);

Example 4: convert string to array c#

string myString = "foobar";
char[] myCharArray = myString.ToCharArray();

/* Example of myCharArray
{'f', 'o', 'o', 'b', 'a', 'r'}
*/

Example 5: how to turn a string in a char list c#

string sentence = "Mahesh Chand";  
char[] charArr = sentence.ToCharArray();  
foreach (char ch in charArr)  
{  
    Console.WriteLine(ch);  
}

Example 6: how to make a string a list of characters c#

string scentence = "Hi there"; // Defining a string to turn to characters

char[] charArr = scentence.ToCharArray() // Turns String to a list of characters
  
//The output of charArr would be:
//['H', 'i', ' ', 't', 'h', 'e', 'r', 'e']
  
  
/*
Answer by Ren Rawbone
*/