0 out of 1 rated this helpful - Rate this topic

CA1823: Avoid unused private fields

TypeName

AvoidUnusedPrivateFields

CheckId

CA1823

Category

Microsoft.Performance

Breaking Change

Non-breaking

This rule is reported when a private field in your code exists but is not used by any code path.

Private fields were detected that do not appear to be accessed in the assembly.

To fix a violation of this rule, remove the field or add code that uses it.

It is safe to suppress a warning from this rule.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.