Hi experts,
I got a dll with two classes in inheritance relation, like below:
namespace Test
{
public class A
{
public class B
{
public string bString;
public string bMethod()
{
return bString;
}
}
}
}
when I add this dll to AX references and try to using it, class A is the only thing I can get, I can't declare B so that can't call method bMethod.
Is possible to declare class B and call method bMethod? if yes, how? Thanks for your help.
Best regards;
Daniel