Class StringUtility
Provides string utilities.
Inheritance
System.Object
StringUtility
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Celerik.NetCore.Util
Assembly: cs.temp.dll.dll
Syntax
public static class StringUtility
Methods
FirstUpperRestLower(String)
Converts the first char of this string to UpperCase and the rest to LowerCase.
Declaration
public static string FirstUpperRestLower(this string str)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | str | The string to be converted. |
Returns
| Type | Description |
|---|---|
| System.String | First char in UpperCase and rest in LowerCase. |