Returns an array of objects representing all the custom attributes of the constructor represented by this System.Reflection.Emit.ConstructorBuilder instance.
The inherit parameter is ignored because a class never inherits constructors from base classes.
To get the custom attributes, finish building the type by calling TypeBuilder.CreateType, retrieve the constructor by calling the Type.GetConstructor(Type[]) method on the returned type, and then call the System.Reflection.MemberInfo.GetCustomAttributes(bool) method on the returned System.Reflection.ConstructorInfo.