示例#1
0
 /// <summary>
 /// Initialize a new instance of a <see cref="AttributeTypeCheckHelper"/> class.
 /// </summary>
 public AttributeTypeCheckHelper()
 {
     _interfaceCheckHelper = new InterfaceCheckHelper();
     _checkActionList      = new List <Action <TypeDefinition> >
     {
         CheckType,
         CheckMethods,
         CheckProperties,
         CheckFields,
         CheckEvents
     };
 }
示例#2
0
 public MemberParametersCheckHelper()
 {
     _classCheckHeper      = new ClassCheckHelper();
     _interfaceCheckHelper = new InterfaceCheckHelper();
 }