I开发者_StackOverflow中文版 have a C# application which has a dll added by reference. When I try to run the exe file from Windows (after compilation) and the dll is renamed I want the application to s
I have a project which has several custom descriptors written for the assembly plugin. Is there a way to run only one of those descriptors at a time instead of the whole bunch? I tried using the descr
how can I protect my assembly, because once I deploy the setup, assembly will be deployed too, and there are chances that user will get the 开发者_开发知识库assembly from Program Files, and may add re
I have a assembly. In this assembly I have a class and interface. I need to load this assembly at runtime and want to create an object of the class and also want to use the interface.
Is there any way to prevent o.GetType() from throwing an exception when called on an object whose type is internal and resides in another assembly?
I\'m working on an application where users can create classes programatically at runtime.They have a UI screen where they fill out meta data which gets turned into classes.Basically, the data the user
My Visual Studio 2008 project references two (external) assemblies (A+B) both of which happen to be referencing the same third assembly (C). However, assembly A expects assembly C to have a public key
I have an e-commerce website that is already up and running for some time. It\'s built on .NET 3.5. So far, so good.
The F# Interactive (fsi.exe) has a directive to reference a given assembly: >#help;; [...] #r \"file.dll\";;Reference (dynamically load) the given DLL
I\'ve created a factory assembly that can process any type of transaction (that supports ITransactionType).I can add more transaction types in separate assemblies, all of which will work with the fact