The difference between C # and the 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"


Guess you like

Origin www.cnblogs.com/dreamman/p/11973475.html