public static ConstructorReflector GetReflector(this ConstructorInfo constructor)
 {
     if (constructor == null)
     {
         throw new ArgumentNullException(nameof(constructor));
     }
     return(ConstructorReflector.Create(constructor));
 }
 public static ConstructorInfo GetConstructorInfo(this ConstructorReflector reflector) => reflector?.GetMemberInfo();