I have a string such as “Int”, “Double”, “DateTime” etc. How do I get the fully qualified name from this string?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s worth bearing in mind that
intisn’t a type. It’s an alias provided by C# for the typeSystem.Int32. Bearing that in mind, and assuming you only care about core types, you can try:As I said, this will not work for
Int, but would work forInt32which is the type it’s aliased to. This code also contains no error handling for where, for example, no type is found in mscorlib that matches the one you’ve entered intypeName