The dynamic-assemblies tag has no wiki summary.
14
votes
3answers
675 views
.NET: Accessing non-public members from a dynamic assembly
I'm working on a library that allows users to input arbitrary expressions. My library then compiles those expressions as part of a larger expression into a delegate. Now, for still unknown reasons ...
10
votes
1answer
691 views
Why doesn't dynamic keyword work with dynamically loaded assemblies?
I'm working on a CSharp expression evaluator which can be used as you can see below. This component generates code and compiles it in memory and after that, it loads the generated assembly, creates an ...
4
votes
1answer
110 views
Dynamic Assemblies and Methods
I've programmed .NET and C# for years now, but have only recently encountered the DynamicMethod type along with the concept of a Dynamic Assembly within the context of reflection. They seem to always ...
3
votes
1answer
234 views
Assembly.GetManifestResourceNames() exception because of dynamic assembly
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 ...
3
votes
2answers
386 views
.net dynamic assemblies
I was recently asked if I knew anything about Dynamic Assemblies in .Net. The short answer was - I don't.
I have found plenty of articles that describe how to create a dynamic assembly but none that ...
2
votes
2answers
618 views
How to save a dynamically generated assembly that is stored in-memory?
I want to get my hands on an assembly by saving it to disc or reflect it at runtime. The assembly is generated dynamically in memory by third party.
Does anyone know how to do this?
1
vote
2answers
227 views
2-way Cross Process Communication
I am working on a project that i want to have a plugin-sandbox like System, However i am having issues working out 2-Way Real time Cross Process Communication. At first i thought of WCF, as it can ...
1
vote
1answer
182 views
TFS 2010 - WebDeployment - indirect referenced assembly missing
We've got the following problem:
solution-structure:
AutofacRegistration
References: Repositories.dll
WebApplication
References: AutofacRegistration.dll
In our web application we are ...
1
vote
1answer
123 views
Can I specify dependency directories when dynamically loading assemblies?
I'm wondering if a setup like this is possible:
c:\eflow\proxy.dll (main DLL loaded by application)
c:\eflow\application\dynamic.dll (DLL dynamically loaded by proxy.dll)
c:\eflow\dependency.dll ...
0
votes
1answer
190 views
Load A Assembly in Runtime and call a Method and unload the assembly
Im creating an application, wich will conect to several sql database and get some details form the database,
In this application i have to encrypt the database connection details such as user name ...
0
votes
2answers
170 views
Dynamically loading an assembly which expects GAC assemblies which are not actually available?
What happens if an application tries to load an assembly which has references to assemblies in the GAC and these assemblies are not available on the machine?
Basically I want to rely on assembly ...
0
votes
1answer
212 views
Extension Method in Dynamically Generated Assembly?
I'm trying to include an extension methods static class in a dynamically generated assembly, except that i keep getting a compiler error of 'Type expected' at line 6, column 28, which happens to be ...
0
votes
1answer
128 views
What might cause this ExecutionEngineException?
I am trying to use Reflection.Emit to generate a wrapper class in a dynamic assembly. Automatic wrapper generation is part of a new open-source library I'm writing called "GoInterfaces".
The wrapper ...
0
votes
1answer
64 views
How can I change the name of a dynamic assembly after it has been created?
Is there any way to change the name of a dynamic assembly after it has been created? I'm using a framework that uses dynamic methods, and it is creating a dynamic assembly with the same name as my ...