In JavaScript if I have var arr = ["a", "b", "c"] I can say arr.join(','); to get a string containing the comma-delimited list of values. Is there a direct way to do this in Linq?
I know I can use Aggregate ie pluginNames.Aggregate((s1, s2) => s1 + ", " + s2); But that seems a bit clunky. Is there something cleaner? Something hypothetically like
pluginNames.JavaScriptJoin(", ");
Try