Hi,
Basically, I'm trying to parse a string into a char for submitting into an array, this is what I have so far:
String strVariable;
Char charVariable;
strVariable = "Some String";
charVariable = String.ParseString(strVariable);
The bottom lines yields an error...is this possible to do?