Tagged Questions
1
vote
2answers
171 views
.NET 4.0 Late Binding: Ensure Assembly Authenticity?
I have to develop a .NET C# application that supports plugins. I’ve found a lot of information on the internet and it doesn’t seem to be so hard.
I just have a specification that the Assemblies of ...
0
votes
4answers
90 views
Late-binding static calls - C# 4.0
My goal is to be able to use intellisense, while still instructing the compiler to generate late-binding code (i.e. CallSites and Binders).
Say I have
class MyDynamicDataProvider
{
public int ...
0
votes
2answers
239 views
Createinstance() - Am I doing this right?
I'm trying to put together a plugins system with .NET, and I'm not sure if I'm doing it correctly. The basis of the system is that a specific directory ({apppath}/Plugins/) will have a bunch of ...