TextCasing Enum
| Namespace | Skybrud.Essentials.Strings |
|---|---|
| Assembly | Skybrud.Essentials.dll |
| Visibility | Public |
Indicates the casing a given string should be converted to.
public enum TextCasing : Enum { }
Fields
| Name | Value | Summary |
|---|---|---|
| LowerCase | 0 |
Indicates that the string should be converted to lower case (eg. |
| UpperCase | 1 |
Indicates that the string should be converted to lower case (eg. |
| CamelCase | 2 |
Indicates that the string should be converted to camel case (eg. |
| PascalCase | 3 |
Indicates that the string should be converted to Pascal case (eg. |
| KebabCase | 4 |
Indicates that the string should be converted to kebab case, which is lower case words separated by hyphens (eg. |
| TrainCase | 5 |
Indicates that the string should be converted to lower case, which is upper case words separated by hyphens (eg. |
| Underscore | 6 |
Indicates that the string should be converted to a lower case string with words separated by underscores (eg. |