System.Dynamic.CallInfo.CallInfo C# (CSharp) Method

CallInfo() public method

Creates a new CallInfo that represents arguments in the dynamic binding process.
public CallInfo ( int argCount ) : System.Collections.Generic
argCount int The number of arguments.
return System.Collections.Generic
        public CallInfo(int argCount, params string[] argNames)
            : this(argCount, (IEnumerable<string>)argNames)
        {
        }

Same methods

CallInfo::CallInfo ( int argCount, IEnumerable argNames ) : System.Collections.Generic