I'm trying to write some text into a textbox whose name is based on num1 and num2 as mentioned in the code. so, if num1 and num2 are 0, 0 then the text should be written to a textbox with name 'textbox00' similarly if num1 and num2 are 1, 1 then the text should be written to 'textbox11'. Is this possible?
int num1;
int num2;
if (num1 == 0 && num2 == 0)
{
//Write some text into textBox with name $"textbox{num1}{num2}"
}
Thank you!