I have one solution. I have 2 Dll's (projects):
The UI dll:
- excecutes the solution
- activates a continues operation in class on"B" dll that will return an array at the end.
- activates some functions on Business-Logic dll.
The "B" dll:
- is doing a continues operation.
- While doing continues operation- it fires some events to the printing class in the UI dll.
- At the end of the operation it returns an array to the UI dll.
It appear that I need to Add references in both UI and "B" dll's in order to use each other's classes and functions.
Problem: Visual-Studio gives me error " Adding this project as a reference could cause circular dependency".