Given:
A string dayCodes (i.e. \"MWF\" or \"MRFU\") that I need to split and create a collection of strings so I
dayCodes
\"MWF\"
\"MRFU\"
To answer the question in the title for anyone finding this in a search...(not the problem as described...thats one of earlier posts.)
var t = "ABC"; var s = t.ToCharArray().Select(c => c.ToString()).ToArray();