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
DefaultValue | 3 | Argument is a default value supplied automatically by the compilers. |
Explicit | 1 | Argument value is explicitly supplied. |
None | 0 | Represents unknown argument kind. |
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. |
Applies to
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.