# Humanizer
This class provides static methods for "humanizing" names/identifiers.
- FromTitleCase(string):string - This class will add spaces between "word parts" of a variable name (identifier). For example, if
FirstNameis passed in, the result will beFirst Name. - ToTitleCase(string):string - This class will remove spaces from a string and produce an identifier name in Title Case format. For example, if
To title caseis entered, then the result will beToTitleCase.