Assembly problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi..
I´m doing an aplication in c#, i create an windows aplicantion as my main project, and create a few libraries, to hold some classes and forms. So I made a reference link from the aplication to the libraries(in the menu of visual studio .net)

the problem is that I can´t access these classes nor the forms from the aplication project. Why is that heppens??

[]s...
 
Ricardo,

Are you declaring the namespaces using a "using" declaration at the top
of your file? If you don't do that, then you will have to use the full type
names. Either that, or you are not referencing the correct versions of your
assemblies.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Ricardo said:
Hi...
I´m doing an aplication in c#, i create an windows aplicantion as my main
project, and create a few libraries, to hold some classes and forms. So I
made a reference link from the aplication to the libraries(in the menu of
visual studio .net).
the problem is that I can´t access these classes nor the forms from the
aplication project. Why is that heppens???
 
Back
Top