Enum ParameterKind
Describes the kind of parameter.
public enum ParameterKind
Fields
ExplicitByRef = 1The parameter is explicitly declared as being passed by reference (
ByRef).If the member is a
Property LetandProperty Setdeclaration, semantics workByValregardless.ExplicitByVal = 2The parameter is explicitly declared as being passed by value (
ByVal).ImplicitByRef = 0The parameter is implicitly declared as being passed by reference (implicit default).
ImplicitByVal = 3The parameter is implicitly declared as being passed by value (
ByVal).This is only applicable for the value paraemter of
Property LetandProperty Setdeclarations.