¿Por qué no puedo acceder a los datos dentro del Método?

Actualmente estoy tratando de llenar unTableLayoutPanel a través de un método que va de la siguiente manera:

private int _rowCount;
public void InitPaths()
{
    int c = 1;
    int a = 1;

    while (a < _PathRows.Length - 1)
    {
        var label = new Label();
        //
        // Label - Format.
        //
        label.Dock = DockStyle.Fill;
        label.AutoSize = false;
        label.Text = _pfadZeilen[a];
        label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
        label.Size = new System.Drawing.Size(22, 13);
        label.BackColor = System.Drawing.Color.Transparent;
        TableLayoutP.Controls.Add(label, 3, c);

        //Checkboxen Einfügen
        var cbox = new CheckBox();
        //
        //Checkbox Format.
        cbox.Anchor = System.Windows.Forms.AnchorStyles.None;
        cbox.AutoSize = true;
        cbox.CheckAlign = System.Drawing.ContentAlignment.MiddleCenter;
        cbox.Name = "checkBoxPfad" + a;
        cbox.Size = new System.Drawing.Size(15, 14);
        cbox.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
        cbox.UseVisualStyleBackColor = true;
        TableLayoutP.Controls.Add(cbox, 0, c);
        a++;
        c++;

    }

    this._rowCount = BibTable.GetRowHeights().Length; // which seems to be Holding the value only within the method
}

y luego elimine todas las filas en Acción, a través del siguiente Método:

public void RemoveRows()
{
    for (int row = _rowCount; row >= 0; row--)
    {
        BibTable.RowStyles.RemoveAt(row);
        BibTable.RowCount--;
    }
}

Ahora el problema es, si intento hacer algo con elTableLayoutP Fuera del método donde se inicializan todas las filas, me dirá:

Referencia de objeto no establecida en la instancia de un objeto.

¿Que puedo hacer? ¿Hay alguna forma de obtener un método dentro de un método (me estoy dando cuenta de lo estúpido que suena al escribirlo) o de alguna otra forma de lidiar con esta situación?

Respuestas a la pregunta(2)

Su respuesta a la pregunta