With the String class, you can do:
string text = new string(\'x\', 5); //text is \"xxxxx\"
What\'s the shortest way to create a List< T > th
This seems pretty straight-forward ...
for( int i = 0; i < n; i++ ) { lst.Add( thingToAdd ); }
:D