Jurassic.Compiler.DynamicILGenerator.EnlargeArray C# (CSharp) Méthode

EnlargeArray() private méthode

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