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
Copy file name to clipboardexpand all lines: analyzers/its/sources/ManuallyAddedNoncompliantIssues.CS/IntentionalFindings/S4635.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,6 @@ namespace IntentionalFindings
13
13
publicstaticclassS4635
14
14
{
15
15
publicstaticintTestMethod()=>
16
-
"Test".Substring(1).IndexOf('t',StringComparison.InvariantCulture);// Noncompliant (S4635) {{Replace 'IndexOf' with the overload that accepts an offset parameter.}}
16
+
"Test".Substring(1).IndexOf('t',StringComparison.InvariantCulture);// Noncompliant (S4635) {{Replace 'IndexOf' with the overload that accepts a startIndex parameter.}}
0 commit comments