Microsoft.JScript.MemberInfoList.Grow C# (CSharp) Method

Grow() private method

private Grow ( ) : void
return void
      private void Grow(){
        MemberInfo[] list = this.list;
        int n = list.Length;
        MemberInfo[] newList = this.list = new MemberInfo[n+16];
        for (int i = 0; i < n; i++)
          newList[i] = list[i];
      }