Continuing my series to break the BCL for fun and no profit here's another string.Join bug:
String.Join(",", new object[] { null, "x" })
returns "". It should return ",x".
This bug exists in CoreCLR, in 4.6.2 and in the recently merged string.Join fix.
Continuing my series to break the BCL for fun and no profit here's another
string.Joinbug:returns
"". It should return",x".This bug exists in CoreCLR, in 4.6.2 and in the recently merged
string.Joinfix.