StringExtensionsCapitaliseFirstLetter Method |
Capitalises the first letter of the provided string, if there are multiple words in the string only the first will be capitalised
Use this instead of ToTileCase if you wish to preserve camelCase formatting
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static string CapitaliseFirstLetter(
this string input
)
Parameters
- input
- Type: SystemString
The string to capitialise the first letter of
Return Value
Type:
String[Missing <returns> documentation for "M:Entelect.Extensions.StringExtensions.CapitaliseFirstLetter(System.String)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also