string str = string.Empty; Type strType = str.GetType(); Type strTypeType = strType.GetType(); strType.ToString(); // returns "System.string" strTypeType.ToString(); // returns "System.RuntimeType"
C#中的System.Type和System.RuntimeType之间的区别
原文:https://www.cnblogs.com/dreamman/p/11973475.html