I have created a C# code where I'll input a code to it and it returns me an encrypted entry pass code. Its all working perfectly. Now the question is that, I want to apply this code to every application I create so that only after getting the pass code, the application should run. As far as I know, I now insert that C# code file to that application and everytime am linking that code files.
For a C# application its fine, but when I create application using VB.NET, I am forced to convert the code file written in C# to VB everytime. I have heard about DLL and class files. But I am not sure how to apply this further.
Help is wanted for me as to how:
- I should create DLL (or class) file out that C# Code file
- How I should send and retrieve the values from that file
- How should I make it available for both C# and VB application.
Thanks for your time.