Overridable Methods In Constructors -Help to Fix
问题 Im attempting to use fxCop on a C# Project as kind of basis for C# coding standards. The project Im using is called S#arp Architecture and is freely available here: S#Arp Arch Now if I run fxCop (most things have been fixed already) I need to fix the CA2214 fxcop error for overridable methods in contructors. At the moment a piece of violating code looks like this: public class Region : Entity, IHasAssignedId<int> { public Region(string description) { Check.Require(!string.IsNullOrEmpty