Microsoft.Scripting.Runtime.ArgumentArray.ArgumentArray C# (CSharp) 메소드

ArgumentArray() 개인적인 메소드

private ArgumentArray ( object arguments, int first, int count ) : System.Linq.Expressions
arguments object
first int
count int
리턴 System.Linq.Expressions
        internal ArgumentArray(object[] arguments, int first, int count) {
            _arguments = arguments;
            _first = first;
            _count = count;
        }