How would you convert an array of booleans to a string like "false, true, true, false" - using as few lines of code as possible?
Python allows me to use the following (very nice and clean):
", ".join(map(str, [False, True, True, False]))
In C#, string.Join
only allows me to join an array of strings.
So what is a short way to do the same in C#?