Click here to Skip to main content
15,923,909 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How is Create and Execution a DLL in C# programming.
Posted

Hi,

check this..

Create Class Library[^]
 
Share this answer
 
check this out:

How to: Create and Use C# DLLs[^]

hope it helps :)
 
Share this answer
 
start new project c# Class Library.
C# .dll cannot be executed: it needs to be called/referenced by an application.
Then in same solution,
make a second project such as Windows or Console application that will
build and run as an .exe program.
then add reference to the .dll library project.
then add
using [ClassLibraryName];
to .exe code files
 
Share this answer
 
Please refer following threads:

In this article you will get information about how to create and use DLLs in C Sharp :
Creating and Using C# DLLs[^]

The process of creating class libraries is quite straightforward, you can get some more details over here,
How to Create a Class Library in C# .NET[^]

Here you can get complete details with detailed description of Libraries in C#,
Please refer:
Introduction to Custom Libraries[^]

Hope it helps!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900