ArgumentKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Kinds of arguments.
public enum class ArgumentKind
public enum ArgumentKind
type ArgumentKind =
Public Enum ArgumentKind
- Inheritance
-
ArgumentKind
Fields
Name | Value | Description |
---|---|---|
None | 0 | Represents unknown argument kind. |
Explicit | 1 | Argument value is explicitly supplied. |
ParamArray | 2 | Argument is a param array created by compilers for the matching C# params or VB ParamArray parameter. Note, the value is a an array creation expression that encapsulates all the elements, if any. |
DefaultValue | 3 | Argument is a default value supplied automatically by the compilers. |