How to create a C # DLL with Interop to traffic data between applications using encryption / decryption of a string that will be sent and received?
How to create a C # DLL with Interop to traffic data between applications using encryption / decryption of a string that will be sent and received?
Define public methods in your DLL
, add the reference to it in your project, and then exchange information between your project and DLL
. To generate, every project you compile, turns a DLL
into the bin folder. Ideally you should create a project just for that, and then add the reference. I think that's enough. I do that.