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
Code fix for CC0014 TernaryOperatorAnalyzer is not compatible with += operator in VB code.
Example:
Original code:
If values = String.Empty Then
values = valueString
Else
values += ", " & valueString
End If
Fixed code:
values = If(values = String.Empty, valueString, ", " & valueString)