DLL to encrypt a string

1

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?

    
asked by anonymous 16.01.2015 / 14:46

1 answer

1

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.

    
16.01.2015 / 17:59