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"


原文地址:https://www.cnblogs.com/dreamman/p/11973475.html