Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i have added reference "TCSCloud.Domain.RepairOrder;" to my project , it worked but this namespace also Includes model folder which contains UPDATEREPAIR.cs , My dll doesn't access Model folder, i want to do like this TCSCloud.Domain.RepairOrder.Model; but it throws NOT found error while actually TCSCloud.Domain.RepairOrder contains Model folder, why ?

I am using Asp.net .net 4 via VS2013
Posted
Comments
Pheonyx 7-Mar-14 2:32am    
A Dll, as far as I'm aware, has no understanding of the context of a "folder", you might have a folder in your visual studio project. Check what namespace is set up in your UpdateRepair.cs, that will be how you access the class(es) in that cs file.

If there is no namespace in it, then the class(es) will be in the default namespace of the project.

1 solution

its natural you cannot access the folder within the DLL you can only access the class and Funcion inside.
 
Share this answer
 
v2

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