I\'d like to repeat a set of characters multiple times. I know how to do it with a single character:
string line = new string(\'x\', 10);
var result = String.Join("", Enumerable.Repeat("-.", 10));