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
Title basically says it all. All the other Concat/Join overloads in String return string.Empty for null inputs, however this is not the case with Concat(object):
If ToString returns null then Concat will return null. This is in contrast to basically all of the other overloads, which return string.Empty for null inputs.
Title basically says it all. All the other Concat/Join overloads in
String
returnstring.Empty
for null inputs, however this is not the case withConcat(object)
:If
ToString
returns null thenConcat
will return null. This is in contrast to basically all of the other overloads, which returnstring.Empty
for null inputs.Link to source code
Maybe this should be fixed?
The text was updated successfully, but these errors were encountered: