共用方式為


CallInfo 建構函式

定義

建立新的 CallInfo,表示動態繫結處理序中的引數。

多載

CallInfo(Int32, IEnumerable<String>)

建立新的 CallInfo,表示動態繫結處理序中的引數。

CallInfo(Int32, String[])

建立新的 PositionalArgumentInfo

CallInfo(Int32, IEnumerable<String>)

來源:
CallInfo.cs
來源:
CallInfo.cs
來源:
CallInfo.cs

建立新的 CallInfo,表示動態繫結處理序中的引數。

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))

參數

argCount
Int32

引數數目。

argNames
IEnumerable<String>

引數名稱。

適用於

CallInfo(Int32, String[])

來源:
CallInfo.cs
來源:
CallInfo.cs
來源:
CallInfo.cs

建立新的 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())

參數

argCount
Int32

引數數目。

argNames
String[]

引數名稱。

適用於