How can I add space before a string with loop? Something like this:
string someString = "a";
for (int i = 0; i<5 ; i++)
{
//add space before string code
}
Here is the logic I want:
// int i = 0;
// a;
// int i = 1;
// "\t" + a;
// int i = 2;
// "\t\t" + a;