I have an assembly stored in a byte array, and I want to use a Type
that's in it.
I can save it to file while developing, and reference it in the project's references. But then when deployed - the file isn't there and the program crashes. If I don't reference it - Visual Studio complains that the Type does not exist, of course.
I'm trying to avoid using reflection if possible. This question implies that when the assembly is available beforehand - it should be simple.
The question is not how to load the assembly. Rather - How to use the available classes in it as any other code - with intellisense etc.