Split string into string array of single characters

I believe this is what you’re looking for:

char[] characters = "this is a test".ToCharArray();

Leave a Comment