Click here to Skip to main content
15,911,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I am developing a project, in this i used some files in a folder called library.I want to use these library files in one of my cs class, when i am trying to do this by( using.namespacename.library).I am getting some errors.so please help to achive my task.

Error I am getting
The type or namespace name 'Library' does not exist in the namespace 'NeuralNetworks' (are you missing an assembly reference?)

(NeuralNetworks is my namespace name)
Posted
Updated 8-Oct-10 20:39pm
v3

You need to specify the errors you are getting.

Make sure you have added the appropriate dll reference into your project.
 
Share this answer
 
dont put any using
as the files are in ur project itself
check the name space of the file u want to add

put using for tat name spance
for eg.

if the namespace of file cs1 in library is xyz
put
using xyz

not need to library.xyz or xyz.libra
and if the namespace is same for both ur folder files, then no need for using also.
 
Share this answer
 
Comments
swathi6589 9-Oct-10 3:26am    
Its working
Thank You

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900