标签: c#
我想从一个字符串中获取Type对象,该字符串包含从其名称空间开始的类的完整路径。
Type
我尝试使用Type type = Type.GetType("System.Convert"),它可以工作,但是在使用null时,它给了我Type type = Type.GetType("System.Text.RegularExpressions.Regex")。
Type type = Type.GetType("System.Convert")
null
Type type = Type.GetType("System.Text.RegularExpressions.Regex")
我在这里做错什么了吗?