Program to create and use of DLL in C#
Program to create and use of DLL in C#
Program to Create and use DLL in C#.
Below are steps for execution of this program.
This code is executed in visual studio 2010.
Class1.cs
using System;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
namespace ClassLibrary5
{
public class Class1
{
public int add(int a, int b)
{
int c = a + b;
return c;
}
}
}
Consoleapplication5.cs
using System;
usingSystem.Collecti…
View On WordPress










