Method PascalCaseToWords
PascalCaseToWords(String)
Converts a string in pascal or camel case to a human readable string of words.
Declaration
public static string PascalCaseToWords(this string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data | A string containing the data to re-format. |
Returns
Type | Description |
---|---|
System.String | A string containing the human readable version of this data. |
Remarks
For example, myFunction becomes My Function, ReplicationHandler becomes Replication Handler.