c# string to character array

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

Also in C#: