|
I have to make complex number calculator in console and windows application. So first project is the complex, second the console, and the third is the windows. Complex project (constructor, operator loading, etc) will be called in the second and third project. So I will need to create
Complex x = new Complex ();
but it didn't recognize it, to begin with even after I link it, and tells me that there are more than one entry point.
What should I do? Help...
|