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

GetArg() private method

private GetArg ( ArgumentArray array, int index ) : object
array ArgumentArray
index int
return object
        public static object GetArg(ArgumentArray array, int index) {
            return array._arguments[array._first + index];
        }