6 Replies
.ToCharArray()
is probably the simplest way to do it
but...this will be a char[]
and not string[]
which is probably not what you want?Or just
foreach
over the string(will still iterate over
char
s but I digress)Depends on what the goal is here
ty