1
Answer

Merging to Programs into one ? i keep getting Assembly ref errors

Geist

Geist

20y
1.6k
1
How would one go about merge two programs (two different forms ) into one project ? It seems its not as simple as just Adding the items needed... and then taking out the static void from one of the .cs files and running the form for the other cs file... Anyone have any sort of strict guidlines as to how to merge projects ? (okay i only started programming in Dot.Net like a month ago so yeah noob of note)
Answers (1)
0
Mahesh Chand
2 286.9k 123.7m 16y

You can add multiple projects to a solution by right clicking on the Solution name in Solution explorer and Add Project option.

To use/reference a project B in project A, you use Add Reference option and select the project from the list you want to use. This step will let you use your project B in project A.