You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is essentially an issue with string.join(String separator, object[] values).
If first value is null like in [DataRow(null, " Test")] , both .net framework and net core used to return an empty string earlier. But this issue got fixed in netcore to return (,Test) refer this. However, it appears that the same fix is not yet ported to .net framework and hence we are observing a difference in behavior.
Steps to reproduce
Run this test in .NET Framework 4.6.1 mode
Expected behavior
Should output the same display name as in .NET Core
Actual behavior
And even worse with multiple null tests
Environment
VS 2017 15.3.5
.NET Core 2.0 / .NET Framework 4.6.1
The text was updated successfully, but these errors were encountered: