I want to improve my programs by using dll files next to the application or using libraries of the operating system..
So how can i pack classes into dll file in C# ?
and how can i call methodes from dll files ?
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.
Make a library project from visual studio project templates. When you will compile it, you will get dll in the output folder (probably the debug folder).
Add a reference of this project where you want to consume the library (dll) and use its class. Do not forget to import the namespace for more ease.