I have two dlls that are dllA and dllB.
I have same object in both the dlls mentioned as below.
class OrderObect
{
public string firstName {get;set;}
public string lastName {get;set;}
}
I am sending the List from dllA to dllB.
I am getting one exception that is Cannot convert list of dllA.OrderObject to list of dllB.OrderObject.
So how to solve that, Thank you :)