I want to create a string repeating the same seqeuence n-times.
How I do this:
var sequence = "\t";
var indent = string.Empty;
for (var i = 0; i < n; i++)
{
indent += sequence;
}
Is there a neat LINQ equivalent to accomplish the same result?