any one please help me to solve the problem, me created a module vb.net, i have to use the module functions in c#.net, please tell me the is it possible ?
If using VS, then add your vb.net module to your c# solution as another project and create a reference to it, then just import its namespace into the class that needs to use it. I done something similar, only the other way round using a c# class in a vb.net solution.
Comment