multi-project solutions
-
-
Hi, I have two seperate c# projects both working fine. I can see that .NET allows multiple projects in a single solution. Question is how do I run the other project from the default solution project at runtime (I am rather new to .NET) Thanks. BIK
that depends on what you want to achieve. Usually, you will place more than one project in the same solution if they are related (not necessarily means they will run together), but many times, if you are developpig a multitier application, you will have for example your main project, which will generate an .exe (windows or console application) and some class libraries that will generate a .dll, you can run code from those class libraries by adding a reference to them to your main project (the .exe) and then, you can create instance of the classes, call methods, set properties. etc.