ArgumentKind Enum

Definition

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