Hi,
I have a class in third party DLL.
Class A
{
}
I need to decorate it so I created the local instance of it and used it
class B
{
}
The DLL contains a function which gives me the list of A. But If I try to use it as follows
B listofB = Dll.FindAllA()
I got error that cannot implicitly convert DLL.A to Proj.B
There is no difference between the structure of these two classes. How can I convert it?