C
Cindy Lee
I basically have 3 .cpp files and 3 .h files, in a visual studio project.
Is there anyway to compile this into an assembly?
Or do I have to write a wrapper in C#?
Or do I convert to code to C#?
the files are not that large and have functions like:
void CBlowFish:
ecrypt(SBlock& block)
what's the easiest way to do this?
I made a sample C# class file (Hello World) and the custom assembly worked
in my application. I was thinking of trying to translate the code into that
class.
Is there anyway to compile this into an assembly?
Or do I have to write a wrapper in C#?
Or do I convert to code to C#?
the files are not that large and have functions like:
void CBlowFish:

what's the easiest way to do this?
I made a sample C# class file (Hello World) and the custom assembly worked
in my application. I was thinking of trying to translate the code into that
class.