Instead of manually copying the updated classes to each project that uses them, create a class library project and reference the compiled file in each project that uses classes. Organizing your classes as this will help you follow the DRY principle (Do Not Repeat Yourself).
If you need to link to files instead of compiled libraries, you can link to the file as a link, so that several projects link to the same file without copying it to each solution folder. To do this, right-click on your project, select "Add an existing item ...", find the .cs
file and select "Add as link" from the drop-down list in the lower right corner.
source share