Hi,

How to do reference in console application. I am not using IDE. Can I Still use the GDI. I was including using System.Windows.Forms.
But it says it needs to be referenced. I am new to C# programming world so I need ur help guyz.

Thanx a lot

Here is my application
VB Code:
  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.Window.Forms;
  5. using System.Data;
  6.  
  7. public class loops : System.Windows.Forms.Form{
  8.     public static void Main()
  9.     {
  10.         MessageBox.Show(output,"Hello", MessageButtons.OK, MessageBoxIcon.Information);
  11.     }
  12. }