PersonSelectWindow.Update C# (CSharp) Méthode

Update() public méthode

public Update ( ArrayList persons ) : void
persons ArrayList
Résultat void
    public void Update(ArrayList persons)
    {
        this.persons = persons;

        LogB.Debug("Removing table");
        table1.Visible = false;
        removeTable();

        LogB.Debug("Recreating table");
        createTable();
        table1.Visible = true;
    }