I am looking for some solution to my problem, here is what i need, just an example i have phrase
"ProgrammingIsIntresting"
i need it to split and make a string like "Programming Is Intresting".
CultureInfo.CurrentCulture.TextInfo.ToTitleCase work here but how can i put space literal here.
here is what i have and it seems i am stuck here.
var UpperChars = mystring.Where(c => Char.IsUpper(c));
                        foreach (var ch in UpperChars)
                        {
                            if (mystring.IndexOf(ch) == 0)
                                continue;
                        }