What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Noob question here about coding

Truman422

Member
Joined
Jan 10, 2011
Messages
198
Reaction score
14
I'm trying to make a CC, and I'm extremely noob, its mainly for learning purposes because I'm bored. But almost every CC I'm looking at as a reference uses

Code:
 using System.Drawing;

in their CC, but for whatever reason, my Visual C# doesn't recognize it, and I've added the references. What am I doing wrong? It won't build because of this, gives an error every time.

Sorry for such a noob question, just trying to explore the coding world. :)
 
It will only work in a certain part of your CC, post the code and I might be able to spot the issue.
 
You need to add a reference containing this namespace, namely System.Drawing (or something like that).
 
This may help...

Right click on the "References" folder in the Solution Explorer:

attachment.php


Then click on the .NET tab, and find System.Drawing:
attachment.php


Good luck and happy coding!
 

Attachments

  • Add Reference_2011-02-26_15-11-37.webp
    Add Reference_2011-02-26_15-11-37.webp
    20.2 KB · Views: 80
  • RightClick_2011-02-26_15-10-50.webp
    RightClick_2011-02-26_15-10-50.webp
    4.3 KB · Views: 72
Back
Top