Click here to Skip to main content
15,887,822 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello
Please anybody tell me How to make dll.
Posted
Comments
Sergey Alexandrovich Kryukov 6-Mar-13 23:32pm    
This is a forum for software developers... If Visual Studio itself don't tell you that, what's the use of our help. Next time you will ask how to make .EXE, then what, how to create a code file? :-)
—SA

1 solution

Hi there,whatever Sergey Sir told is absolutely right but let me help u out.
go to
File Menu->New->Project->Class Library template and click OK.
it will open a Class1.cs page for you.
C#
public class Class1
{
    public int Add(int a, int b)
    {
        return a + b;
    }
}


now build your project .And add another console Application using Add Project tab.
and now Add refresnces of ClassLibrary1 in your console Application(go to Refrences->Add Refrences->Browse->ClassLibrary1Projoect->bin->debug->ClassLibrary1.dll).
and use below code on Program.cs page:
C#
using System;
using ClassLibrary1;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Class1 c = new Class1();
          Console.WriteLine( c.Add(10, 16));
          Console.ReadKey();
        }
    }
}


now run this ConsoleApplication for getting addition using .DLL concept.
Done.

so jmd
:-)
 
Share this answer
 
Comments
deva936 5-Apr-13 22:53pm    
really thanks a lot. i got it

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