C#中的System.Type和System.RuntimeType之间的区别

 

string str = string.Empty;
Type strType = str.GetType();
Type strTypeType = strType.GetType();
strType.ToString();     // returns "System.string"
strTypeType.ToString(); // returns "System.RuntimeType"


posted @ 2019-12-02 21:41  优六系统(Util6MIS+)  阅读(1359)  评论(0)    收藏  举报