System.Dynamic.CallInfo.CallInfo C# (CSharp) Метод

CallInfo() публичный Метод

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.
Результат 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