0
hi
Using "your dll name"
Class A : "Your Interface name"
{
//Implement the method
}
0
Hi,
include the dll into your project and implement the interface in your class and the
suppose your interface name MyInterface contain a method display()
then create a class
public class myclass : MyInterface
{
public override void display()
{
//Some Implementation Here
}
}