Typeof()与 GetType() ,获取对象的所有公有属性和所有公有方法GetProperties()GetMethods()
TypeOf()与GetType()的区别usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
namespace@typeof
{
//TypeOf()和GetType()的区别:
//TypeOf():得到一个Class的Type
//GetType():得到一个Class的实例的T