i have problem with using bitmap in console application in c#.
I included system.drawing reference to work but while writing code the intelisense shows there isn’t any suggestion for bitmap(X); (where X it the suggestion).
I am using C# 2010 express edition, created console application and added system drawing reference. I have problem with code:
Bitmap bitmap = new Bitmap(); // problem it that i don't see any suggestion from intelisense, but i need insert parameters
Hope i write logically, sorry for english.
Sounds like you’re not referencing the
Bitmapclass from namespaceSystem.Drawing— fully qualifying the namspace may help (if you’ve got a conflictingBitmapclass from a different namespace) – also make sure that you’re referencing theSystem.Drawing.dllassembly