I\'m pretty new to C# and I\'m trying to do something but without much success. I am trying to use the class Point (the one with coordinates).
This is t
Move your cursor to the Point in your code and use the swift keyboard shortcut: Alt+Shift+F10. In there, you can easily attach the necessary namespace - in your case, it will be System.Drawing.
With that shortcut you can decide if you want to attach the whole namespace, or just use it localy, like SystemDrawing.Point _Point = new SystemDrawing.Point();
Bear in mind that you may have to add the library reference - you use a console program, which doesn't have Windows Forms .dll files (as it would be unwise to attach all the unnecessary libraries). You have to add one manually.
Go to you project in solution explorer, right click on References, add reference, Assemblies and then check the System.Drawing. Ounce you add that and the correct namespace (using System.Drawing), it will work.