// () => new T();
 public static T CreateInstance <T>(this Type type)
     where T : new()
 => New <T> .Instance();