Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

. it's not giving an error but is, instead, return an array with 0 items. i feel like i have run into this before (even on my development machine) but I can't for the life of me remember what the problem is.

Assembly assembly = Assembly.GetAssembly(this.GetType());
            //MessageBox.Show(assembly.Location + Environment.NewLine + assembly.FullName + Environment.NewLine );

            Type[] types;

            try
            {
                types = assembly.GetTypes();
            }
            catch (ReflectionTypeLoadException ex)
            {
                MessageBox.Show(ex.Message);
            }
share|improve this question
1  
Are you able to enumerate types from other Get*Assembly calls? i.e. GetExecutingAssembly() or the like. Just trying to narrow down what the problem might be. – jheddings Nov 27 '12 at 19:06
The assembly that I'm using is just a referenced library i use across many apps. so the GetExecutingAssembly would return the wrong one. that's why i simply use this.GetType(). – kyle k Nov 27 '12 at 19:26
How about using an assembly in your control? Can you enumerate types from those? – jheddings Nov 27 '12 at 19:43
So i have FormA (my .exe) with an instance of AssemblyB.Class1.dll. Class1.Method1() is where I call the GetTypes from. So here is where the problem lies : If I simply copy the .exe and .dll into a shared directory this works fine. If I use an installer, the problem occurs. I have strong named the .dll, btw. I have to admit that this is one of my weak points in writing code b/c our environment so rarely demands we even remotely need to care about it. – kyle k Nov 27 '12 at 19:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.