CallInfo Constructors
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.
Creates a new CallInfo that represents arguments in the dynamic binding process.
Overloads
CallInfo(Int32, IEnumerable<String>) |
Creates a new CallInfo that represents arguments in the dynamic binding process. |
CallInfo(Int32, String[]) |
Creates a new |
CallInfo(Int32, IEnumerable<String>)
- Source:
- CallInfo.cs
- Source:
- CallInfo.cs
- Source:
- CallInfo.cs
Creates a new CallInfo that represents arguments in the dynamic binding process.
public:
CallInfo(int argCount, System::Collections::Generic::IEnumerable<System::String ^> ^ argNames);
public CallInfo (int argCount, System.Collections.Generic.IEnumerable<string> argNames);
new System.Dynamic.CallInfo : int * seq<string> -> System.Dynamic.CallInfo
Public Sub New (argCount As Integer, argNames As IEnumerable(Of String))
Parameters
- argCount
- Int32
The number of arguments.
- argNames
- IEnumerable<String>
The argument names.
Applies to
CallInfo(Int32, String[])
- Source:
- CallInfo.cs
- Source:
- CallInfo.cs
- Source:
- CallInfo.cs
Creates a new PositionalArgumentInfo
.
public:
CallInfo(int argCount, ... cli::array <System::String ^> ^ argNames);
public CallInfo (int argCount, params string[] argNames);
new System.Dynamic.CallInfo : int * string[] -> System.Dynamic.CallInfo
Public Sub New (argCount As Integer, ParamArray argNames As String())
Parameters
- argCount
- Int32
The number of arguments.
- argNames
- String[]
The argument names.