I mean, all button names I have are like "btActionXX", being 'XX' 2 numbers taked from Row and Column from a Matrix. For this numbers, I have strings like:
string btName = "btAction";
string ending = "01";
Is there some way to use ' "btName" + ending ' (parsed "btAction01") to use properties from a Button named as this? Something like Button.fromName("btName"+ending);
(this not works) that returns a Button object, or somthing like this?