I made a dll in c# but i need to export the functions.
Is there any way of doing it in c# or other ideas of doing the same thing?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Any
publicclasses and thierpublicmembers will be visible by adding an assembly reference to your C# Assembly (DLL).So if in your assembly you have:
Anything less than public will be hidden.
Unless this is to be called by something outside .Net. Then you will have to use COM.