Enum CharCase
Types of char casing
Namespace: NFX.DataAccess
Assembly: NFX.dll
Syntax
public enum CharCase
Fields
| Name | Description |
|---|---|
| AsIs | The string remains as-is |
| Caps | The first and subsequent chars after space or '.' are capitalized, the rest left intact |
| CapsNorm | The first and subsequent chars after space or '.' are capitalized, the rest is lower-cased |
| Lower | The string is converted to lower case |
| Upper | The string is converted to upper case |