-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Reflection_ParamInfo__ctor
Andrew Koryavchenko edited this page Jun 17, 2018
·
6 revisions
Initializes a new instance of the ParamInfo class.
Namespace: CodeJam.Reflection
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public ParamInfo(
string name,
Object value,
bool required = true
)
VB
Public Sub New (
name As String,
value As Object,
Optional required As Boolean = true
)
F#
new :
name : string *
value : Object *
?required : bool
(* Defaults:
let _required = defaultArg required true
*)
-> ParamInfo
- name
- Type: System.String
Name of the parameter. - value
- Type: System.Object
Value of the parameter. - required (Optional)
- Type: System.Boolean
True
if parameter required.