J
Josh Golden
i have a solution with 2 projects in it, project a and b. project a will be
a dll, but for now exists in the solution. projectB references projectA.
projectA has a dataset with one datatable in it, dataTable1.
From within projectA, in any class or method I have
private x as new ProjectA.dataTable1 -- and this works fine.
but in projectB, when I type
Private y as new ProjectA.dataTable1 -- I get the message
Overload resolution failed because no 'New' is accessible.
I don't get it. I have the right imports, references, etc.
what could it be?
a dll, but for now exists in the solution. projectB references projectA.
projectA has a dataset with one datatable in it, dataTable1.
From within projectA, in any class or method I have
private x as new ProjectA.dataTable1 -- and this works fine.
but in projectB, when I type
Private y as new ProjectA.dataTable1 -- I get the message
Overload resolution failed because no 'New' is accessible.
I don't get it. I have the right imports, references, etc.
what could it be?