NameTransform Enumeration
Indicates how to transform the property, parameter, or method name if an argument doesn't
have an explicit name.
Namespace: Ookii.CommandLineAssembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
public enum NameTransform
Public Enumeration NameTransform
Dim instance As NameTransform
public enum class NameTransform
None | 0 |
The names are used without modification.
|
PascalCase | 1 |
The names are transformed to PascalCase. This removes all underscores, and the first
character, and every character after an underscore, is changed to uppercase. The case of
other characters is not changed.
|
CamelCase | 2 |
The names are transformed to camelCase. Similar to PascalCase, but the
first character will not be uppercase.
|
DashCase | 3 |
The names are transformed to snake_case. This removes leading and trailing underscores,
changes all characters to lower-case, and reduces consecutive underscores to a single
underscore. An underscore is inserted before previously capitalized letters.
|
SnakeCase | 4 |
The names are transformed to dash-case. Similar to SnakeCase, but uses a
dash instead of an underscore.
|