If I run a unit test (mstest) I get an exception if I call assembly.GetManifestResourceNames():

The invoked member is not supported in a dynamic assembly.

This is the problematic code:

Dim assembly As Assembly = Assembly.GetAssembly(Me.GetType())
Dim names = assembly.GetManifestResourceNames()

But if I understand the documentation right, it should work and only if I use AssemblyBuilder.GetManifestResourceNames() I should get this exception.

If I try to step through the .NET sources I get the message:

There is no source available for mscorlib.dll!System.Reflection.Emit.InternalAssemblyBuilder.GetManifestResourceNames()

Why does it throw this exception? Did I miss anything?

I forget to mention that I use Moq (with the option mock.CallBase = True) in the test.

link|improve this question
I found a workaround: If I make the procedure shared (static in c#), where 'assembly.GetManifestResourceNames()' is called, it works. – habakuk May 19 '11 at 11:42
You should post that as an answer to the question and then accept it! :) – Brian Dishaw Jul 30 '11 at 1:22
ok, thanks for the hint :-) – habakuk Sep 12 '11 at 14:45
feedback

1 Answer

up vote 2 down vote accepted

I found a workaround: If I make the procedure shared (static in c#), where 'assembly.GetManifestResourceNames()' is called, it works.

link|improve this answer
This helped me too, but it would be nice if someone could explain why the method needs to be static. – Vale May 16 at 6:59
feedback

Your Answer

 
or
required, but never shown

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