I am developing a program in C# which should include graphic output. I was used to commonly use Drawing library by adding it to references in project tree, but this seems to be different now, because it no longer works for me.
I can see System.Drawing.dll
reference in SDK bundle in the project structure, and as well I managed to add the reference manually into the project build, but once I try to write some code, intellisense doesn't provide any classes from given library such as SolidBrush
, Color
etc.
I would like to add reference to System.Drawing
and use its classes in my code. I've struggled with this for more than a week. Many thanks in advance.