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.
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.