Maybe, but it depends on how the application was archived. If design is one that clearly separates business logic from presentation, you can extract the code and business logic classes into a separate library if you have not already done so. Once this step is completed, you will need to create a new API for this library so that the console application (or any other application) can use it.
On the other hand, if the forms contain business logic, these processes will need to be pulled into new classes without presentation and included in your new libraries. Like I said ... maybe, but it can be a lot of work.
Neil T.
source share