Microsoft.Scripting.Runtime.ArgumentArray.ArgumentArray C# (CSharp) Method

ArgumentArray() private method

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