コード例 #1
0
 static public ImplementableTypeInfo?CreateImplementableTypeInfo(IActivityMonitor monitor, Type abstractType, ICKCustomAttributeProvider attributeProvider)
 {
コード例 #2
0
 static bool HasAutoImplementationClaim(ICKCustomAttributeProvider attributeProvider, MemberInfo m)
 {
     return(attributeProvider.IsDefined(m, typeof(IAutoImplementationClaimAttribute)) ||
            m.GetCustomAttributesData().Any(d => d.AttributeType.Name == nameof(AutoImplementationClaimAttribute)));
 }