I want to get the Type
object from an String which contains the complete path of the class right from its namespace.
I have tried using Type type = Type.GetType("System.Convert")
and it works but it gives me null
when using Type type = Type.GetType("System.Text.RegularExpressions.Regex")
.
Am I doing something wrong here?