Enum StringUtilities.Casing
The casing of a string.
Namespace: Sdl.LanguagePlatform.Core
Assembly: Sdl.LanguagePlatform.Core.dll
Syntax
public enum Casing
Fields
Name | Description |
---|---|
AllLower | All characters are lower-case |
AllUpper | All characters are upper-case |
InitialUpper | The initial char is upper-case, the rest is lower-case |
Mixed | An unspecific mixture of casing which is not covered by the other values, or the casing cannot be determined (such as for System.String.Empty. |