Jurassic.Compiler.DynamicILGenerator.EnlargeArray C# (CSharp) 메소드

EnlargeArray() 개인적인 메소드

Enlarges the internal IL buffer.
private EnlargeArray ( int instructionSize ) : void
instructionSize int The size of the instruction that triggered the resize.
리턴 void
        private void EnlargeArray(int instructionSize)
        {
            Array.Resize(ref this.bytes, this.bytes.Length * 2);
        }
DynamicILGenerator