Debugging C# Program
Download the C# program and run it by creating Console Application using Visual Studio.
The app starts and there are no exceptions shown to us by the debugger. However, the output you see in the console window is not what you expect.
Here is the expected output:
Tadpole 400, Spiral
Pinwheel 25, Spiral
Cartwheel, 500, Lenticular
Small Magellanic Cloud .2, Irregular
Andromeda 3, Spiral
Maffei 1, Elliptical
But, actual output is like this:
Tadpole 400, ConsoleApp_FirstApp.GType
Pinwheel 25, ConsoleApp_FirstApp.GType
Cartwheel, 500, ConsoleApp_FirstApp.GType
Small Magellanic Cloud .2, ConsoleApp_FirstApp.GType
Andromeda 3, ConsoleApp_FirstApp.GType
Maffei 1, 11, ConsoleApp_FirstApp.GType
To Complete this assignment, upload .cs file with necessary corrections to get desired output and a screen shot containing the desired output.