using System; using System.Collections.Generic; using System.Text; namespace NCC.Common.Finder { /// /// 基类查找器接口 /// public interface IFinderBase { /// /// 获取所有类型 /// List LoadTypes { get; } /// /// 查找所有类型 /// /// Type[] FinderAll(); /// /// 查找指定类型 /// /// /// Type FinderType(Type type); } }