# 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 FirstName is passed in, the result will be First 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 case is entered, then the result will be ToTitleCase.
Last updated on: 9/21/2019, 11:09:56 PM