using System; namespace Falcon.DI { /// /// 依赖注入实例化工厂 /// public interface IFalconDIInstantFactory { /// /// 通过给定容器实例化对象 /// T Instance(); } }