One code modification Resharper 4.0 will suggest is that if a public constructor is located in an abstract class, it should be adjusted to use the protected access modifier if currently public:
So, from this:
PLAIN TEXT
C#:
public abstract class AbstractClass
{
public AbstractClass()
{
}
}
To this:
PLAIN TEXT
C#:
public abstract class AbstractClass
{
protected AbstractClass()
{
}
}
So, why is this a good code edit?
Well, having [...]
Continue Reading This Article...





















Articles & Research
SharePoint Architecture
Personal/Off-Topic
Latest Free SharePoint Software
SecureCenter For SharePoint
SharePoint Security Assurance Program™
Free Online SharePoint Security Tools
Online SharePoint Security Health Assessment

