Click here to Skip to main content
15,905,427 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I have developed a class Library.In the class Library I have added a new Folder named Student.In the student folder I added three class(.cs) files.If I build the solution it does not throw any errors for me.It has build ed successfully.

When I am trying to make use of this class library in the website.It is Only recogninzing the First created class file in student folder.It is not recognizing the other three files.

Any Thoughts ?
Posted
Comments
Sergey Alexandrovich Kryukov 2-May-13 15:35pm    
Yes. You screwed it up; is it helpful? How can we know how did you referenced these assemblies, are they compatible by target .NET Framework with and instruction-set architecture or not, and other detail?
—SA
ZurdoDev 2-May-13 16:53pm    
What is student folder? Is it a project? Are the classes public?
priya9826 6-May-13 13:48pm    
I found whats the cause of this issue.When I am creating a new class under the student folder.The visual studio is not creating the namespace like namespace ProjectName.Student
{
public class ClassA
{

}
}
Instead of this ,The VS 2010 is creating like

Namespace ProjectName
{
public class ClassA
{
}
}

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