Hey All,
I have two projects, A and B.
Inside Project A, I have a DataGrid class, that extends a third party libraries datagrid.
So the class looks like:
public class MyDataGrid : ThirdPartyDataG rid.
Now in project B, I reference Project A, and I try and use MyDataGrid, but get a compile time error saying:
Now if Project B references the Xceed (thirdParty) datagrid, then it works.
Is there a way that B can just reference A? I would hate to have all other projects that want to use my datagrid to have to actually have a copy and a reference to the dll!
Thanks for your time!
I have two projects, A and B.
Inside Project A, I have a DataGrid class, that extends a third party libraries datagrid.
So the class looks like:
public class MyDataGrid : ThirdPartyDataG rid.
Now in project B, I reference Project A, and I try and use MyDataGrid, but get a compile time error saying:
Originally posted by error message
Is there a way that B can just reference A? I would hate to have all other projects that want to use my datagrid to have to actually have a copy and a reference to the dll!
Thanks for your time!
Comment