I have create a dll name "Special".
At the C# IDE, i able to add the special.dll file to my reference.
But, when i running the C# program, It come out with below error message
Could not load file or assembly 'Special, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Did you know what message is it
How's to solve it

Error Message
e1v
Sorry, i do not understand what you means by assemblies. Can make it more clear
Stuart Carnie
Glad to help.
Copy Local property specifies whether to automatically copy the referenced assembly to the target location during a build.
For some reason that property was false for your Special.dll, and hence when you ran the application it did not copy Sepcial.dll to the output directory of 2nd project and you got that error.
The Joshinator
Thanks You. Yogesh ..
I solve the problem. I have one question what the Copy Local property means
Jcarant
Paulus178178
Algorimancer
DF WOSC
Yup. I had created Special.dll. I had other references such as System, System.Data and System.XML come together at this project.