I have a string:
string strToBeSplitted = "HelloWorld";
And I am planning to split my string to an array of string. Usually we do it with char:
char[] charReturn = strToBeSplitted.ToCharArray();
But what I am planning to do is return it with an array of string like this one:
string[] strReturn = strToBeSplitted ???
//Which contains strReturn[0] = "H"; and so on...
I want to return an array of string but I cannot figure out how to do this unless I do this manually by converting it to char then to a new string like StringBuilder.