Reputation: 101
I'm quite a newbee in working with images. I need to use System.Drawing namespace and when i try to do it like this: using namespace System::Drawing;
i have an error that System hasn't been declared. What should i do? Include somthing?
Upvotes: 3
Views: 4070
Reputation: 342
You need #using <System.Drawing.dll>
and of course it have to be CLR project.
Upvotes: 3