Method ToCamelCase
ToCamelCase(string)
Converts a string to camel case by lower casing the first letter (only the first letter is modified).
public static string ToCamelCase(string value)
Parameters
value
stringThe string to camel case.
Returns
- string
The camel cased string.