This is all asp.net c#.
I have an enum
public enum ControlSelectionType { NotApplicable = 1, SingleSelectRadioButtons = 2, SingleSelectD
If C# 3.0 is an option you can use the following one-liner to do the job:
Regex.Matches(YOUR_ENUM_VALUE_NAME, "[A-Z][a-z]+").OfType().Select(match => match.Value).Aggregate((acc, b) => acc + " " + b).TrimStart(' ');