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
Consider the following code, where the second ; violates rule SA1106 (CodeMustNotContainEmptyStatements).
thrownewNotImplementedException();;
If the code fix for SA1106 is applied to this line, a trailing whitespace character remains on the line. This whitespace should be removed by the SA1106 code fix.
The text was updated successfully, but these errors were encountered:
Consider the following code, where the second
;
violates rule SA1106 (CodeMustNotContainEmptyStatements).If the code fix for SA1106 is applied to this line, a trailing whitespace character remains on the line. This whitespace should be removed by the SA1106 code fix.
The text was updated successfully, but these errors were encountered: