<t>What about this:<br/>
<br/>
string tabs = new string('\t', n);<br/>
<br/>
```<br/>
<br/>
Where `n` is the number of times you want to repeat the string.<br/>
<br/>
Or better:<br/>
<br/>
```<br/>
static string Tabs(int n)<br/>
{<br/>
return new string('\t', n);<br/>
}<br/>
<br/>
```</t>