<PackageReference Include="System.Dynamic.Runtime" Version="4.0.11-beta-23409" />

CallInfo

public sealed class CallInfo
Describes arguments in the dynamic binding process.
public int ArgumentCount { get; }

The number of arguments.

public ReadOnlyCollection<string> ArgumentNames { get; }

The argument names.

public CallInfo(int argCount, string[] argNames)

Creates a new PositionalArgumentInfo.

public CallInfo(int argCount, IEnumerable<string> argNames)

Creates a new CallInfo that represents arguments in the dynamic binding process.