I currently have two projects say project A and project B in my solution. Now both projects A and B are using similar classes and a copy of each class is found in each project. I wanted to know if there is a better way to accomplish this task. I want to have a single class somewhere and have both projects access common classes from there. What is the recommneded way to do this.
Share
usingnamespace to use the class in the project A and B.Or just let your shared classes in project A, or B and add reference to this project in the other project (It depends on the content but doing this way will create a kind of assymetry between the projects A and B).