Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to dynamically load an encryption assembly but my GetType is returning null, even though I am using the correct class name. Here's the code:

//Load encryption assembly.
Assembly encryptionAssembly = Assembly.LoadFrom("Encryption.dll");
foreach(Type t in encryptionAssembly.GetTypes())
   {
      MessageBox.Show(t.Name.ToString());
      // This shows "Encryption"
   }
Type encryptionClass = encryptionAssembly.GetType("Encryption");
// But this returns null

I've got a bit of a headache with this one. The class is public and I've definitely spelled it correctly.

Thanks in advance.

share|improve this question
how is that class declared ? – Tigran May 28 '12 at 10:27
You forgot to use the Object Browser in VS. – Hans Passant May 28 '12 at 10:40
@HansPassant - Yep, I absolutely did. Detention for me tonight. – Ste May 28 '12 at 10:55

3 Answers

up vote 4 down vote accepted

Here

MessageBox.Show(t.FullName.ToString()); //FULLNAME

print out the FullName of the type and after use that FullName to get the type from the assembly.

share|improve this answer
Thanks. This did it for me. FullName tells me that it is "MyCompany.Library.Encryption". Guess that's what happens when someone emails you a dll and says "here's the encryption assembly to use"! Shame I can't accept all answers as others also pointed out that I needed the namespace. I'll upvote them too. – Ste May 28 '12 at 10:34

try specifying the full name of the Encryption type (namespace.classname)

share|improve this answer
if you don't know it try looking for it with reflector – eyossi May 28 '12 at 10:28
Thanks for that. +1. I've had to accept Tigran's answer though because he provided me the quickest way to determine FullName. – Ste May 28 '12 at 10:35

You should specify a full namespace of a type, for example:

encryptionAssembly.GetType("My.Namespace.Encryption")

You can know it using t.FullName

share|improve this answer
+1. Thanks. I've got a feeling that will be handy again in future. – Ste May 28 '12 at 10:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.