Type type = Type.GetType("YourClassName");
type.InvokeMember("SelectAll", BindingFlags.CreateInstance,null,null,null);
随便写了一个,看看行不行。
http://msdn.microsoft.com/zh-cn/library/system.reflection.methodinfo.makegenericmethod(VS.95).aspx
知道怎么通过反射来调你的SelectAll<T>()剩下的就好办了。