Skip to content

Commit c49d111

Browse files
authored
Merge pull request #4650 from Youssef1313/patch-11
MarkMembersAsStatic: Exclude indexers
2 parents eb54287 + 902beca commit c49d111

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/NetAnalyzers/Core/Microsoft.CodeQuality.Analyzers/QualityGuidelines/MarkMembersAsStatic.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ private static bool ShouldAnalyze(
202202
return false;
203203
}
204204

205-
// Do not analyze constructors and finalizers.
206-
if (methodSymbol.IsConstructor() || methodSymbol.IsFinalizer())
205+
// Do not analyze constructors, finalizers, and indexers.
206+
if (methodSymbol.IsConstructor() || methodSymbol.IsFinalizer() || methodSymbol.AssociatedSymbol.IsIndexer())
207207
{
208208
return false;
209209
}

src/NetAnalyzers/UnitTests/Microsoft.CodeQuality.Analyzers/QualityGuidelines/MarkMembersAsStaticTests.cs

+8
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,8 @@ public void SomeEventHandler(object sender, System.EventArgs args) { }
335335
public void SomeNotImplementedMethod() => throw new System.NotImplementedException();
336336
337337
public void SomeNotSupportedMethod() => throw new System.NotSupportedException();
338+
339+
public int this[int x] => 42;
338340
}
339341
340342
public class Generic<T>
@@ -394,6 +396,12 @@ End Sub
394396
Public Sub SomeNotSupportedMethod()
395397
Throw New System.NotSupportedException()
396398
End Sub
399+
400+
Default Public ReadOnly Property Item(x As Integer) As Integer
401+
Get
402+
Return 42
403+
End Get
404+
End Property
397405
End Class
398406
399407
Public Class Generic(Of T)

0 commit comments

Comments
 (0)