Anthony Baryshnikov
Anthony Baryshnikov

Reputation: 101

C++ using System.Drawing namespace

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

Answers (1)

ppsz
ppsz

Reputation: 342

You need #using <System.Drawing.dll> and of course it have to be CLR project.

Upvotes: 3

Related Questions