In Visual Studio (C#) I have a form created as part of a project and need to have access to another form that should be created through another project and have both forms reference each other when necessary.. How do I go about doing that?
Share
You can right click on the project name in project explorer window. And choose Add Reference. In the Add Reference window, choose ‘Projects’ tab and select the project you wish to reference to. Do the same for another project. They should now can reference each other.