I got a situation where the client got ‘C’ program which does encryption of columns at client application side. And the same is now to be used in DataWarehousing project in one of the script component which supports C#.
Is there a way this C program can be compiled to dll and imported into C# [or] do we need to re-write this in C#?
Thanks
If the client’s code is already in a DLL, you can use all routines from it using P\Invoke in C#. Here is a tutorial.