Esempio n. 1
0
        public AnnotatedConstructor(ConstructorInfo constructor)
        {
            Constructor = constructor;
            Annotations = constructor.GetAnnotations();

            _parametersLazy = new Lazy <IEnumerable <IAnnotatedMethodParameter> >(GetParameters);
        }