C#要获取一个泛型类型参数的Type对象直接typeof就好了,用不着像Java那样曲线救国。
void xxx<T>() where T : Base { var type = typeof( T ); }