Are there any possibilities to generate a string name as in example:
Code:
string Question1 = "Some text1";
string Question2 = "Some text2";
string Question3 = "Some text3";
var i=1;
text question1Txt
{ strings = 1;
string = "Question"+i; //return "Some text1"
}
i=2;
text question2Txt
{ strings = 1;
string = "Question"+i; //return "Some text2"
}