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 > that is full of n elements which are all the same reference?
|
|
|
|
|
|
|
Try the following
|
||
|
|
|
|
Fastest way I know is:
which you can make an extention method if you want to use it multiple times.
Then you can just do:
|
|||
|
|
|
This seems pretty straight-forward ...
:D |
||||||||||
|
|
|
Java supports this with a different function:
|
||
|
|