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