Type.GetType("namespace.a.b.ClassName") returns null
and I have in the usings:
using namespace.a.b;
UPDATE: the type exists, it's in a different class library, and i need to get it by string name
|
UPDATE: the type exists, it's in a different class library, and i need to get it by string name |
||||
|
|
|
If neither of those things are true, you'll need an assembly-qualified name. |
||||
|
You can also get the type without assembly qualified name but with the dll name also, for example:
I had the same situation and it worked for me. I needed an object of type "DataModel.QueueObject" and had a reference to "DataModel" so I got the type as follows:
The second string after the comma is the reference name (dll name). |
||||
|
|
|
||||
|
|
|
try using this method
|
|||
|
|
|
See this http://stackoverflow.com/questions/441680/how-can-i-retrieve-an-assemblys-qualified-type-name for info on how to get the assembly qualified name. |
|||
|
|
|
If it's a nested Type, you might be forgetting to transform a . to a + Regardless, EDIT: BTW the usings (as I'm sure you know) are only directives to the compiler at compile time and cannot thus have any impact on the API call's success. (If you had project or assembly references, that could potentially have had influence - hence the information isnt useless, it just takes some filtering...) |
||||
|
|
|
If the assembly is part of the build of an ASP.NET application, you can use the BuildManager class:
|
|||
|
|
|
Well, yeah, it returns null if the type doesn't exist. The using doesn't matter to Type.GetType(). So, it sems your type doesn't exist. Did you check if the assembly is loaded? |
|||
|
|
If the assembly is referenced and the Class visible :
GetType returns null because the type is not found, with typeof, the compiler may help you to find out the error. |
|||
|
|
Try using the full type name that includes the assembly info, for example:
I had the same situation when I was using only the the namesspace.classname to get the type of a class in a different assembly and it would not work. Only worked when I included the assembly info in my type string as shown above. |
||||
|
|