Remove private method is never used in a class.
This example, analizer will remove privete method "ConfigureFoo()" never used in class
This source:
public class Foo
{
public void GetFoo()
{
}
public void SetFoo()
{
}
private void ConfigureFoo()
{
}
}
Became:
public class Foo
{
public void GetFoo()
{
}
public void SetFoo()
{
}
}
Severity: Info
Category: Using
Diagnostic id: CC0068
Remove private method is never used in a class.
This example, analizer will remove privete method "ConfigureFoo()" never used in class
This source:
Became:
Severity: Info
Category: Using
Diagnostic id: CC0068