M
Mike
1.
I am creating a project that will have many c# files
(100+). I want to split this project up into modules but
I am not sure what the best way would be. I was thinking
of creating a blank project and creating other projects
inside this blank project where each one of these
projects would have one namespace. Is there a better way
of organizing a project? Can I have just one project
that contains many other namespaces?
2.
I have a C# file called A.cs which is in a namespace
called AA which is in a project called AAA.
I also have a C# file called B.cs which is in a namespace
called BB which is in a project called BBB.
In B.cs, I want to use the A.cs file. So at the
beginning of the B.cs file, I put:
using AA;
However, I get the following error message:
The type or namespace name 'AA' could not be found (are
you missing a using directive or an assembly reference?)
What can I do to solve this? Any ideas to these questions
will be greatly appreciated. Thanks for your reply.
Mike
I am creating a project that will have many c# files
(100+). I want to split this project up into modules but
I am not sure what the best way would be. I was thinking
of creating a blank project and creating other projects
inside this blank project where each one of these
projects would have one namespace. Is there a better way
of organizing a project? Can I have just one project
that contains many other namespaces?
2.
I have a C# file called A.cs which is in a namespace
called AA which is in a project called AAA.
I also have a C# file called B.cs which is in a namespace
called BB which is in a project called BBB.
In B.cs, I want to use the A.cs file. So at the
beginning of the B.cs file, I put:
using AA;
However, I get the following error message:
The type or namespace name 'AA' could not be found (are
you missing a using directive or an assembly reference?)
What can I do to solve this? Any ideas to these questions
will be greatly appreciated. Thanks for your reply.
Mike