Quantcast
Channel: SharpDevelop Community
Viewing all articles
Browse latest Browse all 1764

How can I use the methods of other addins?

$
0
0

I have two addins, A and B, how can I use the classes and methods of class B in class A? like this:

class A

{

    public void ForClassB()

    {

        B  b=new B();

        b.Methods();

    }

}

 

Thanks.


Viewing all articles
Browse latest Browse all 1764

Trending Articles