Hello,
First I wanted to say I've been reading and am impressed at the selection your site and have been programming for 1 month., I'm struggling with a lot of c#concepts understanding the language in general,my problem is with visual c#express when i begin writing the language the red lines apper in the syntax complier and i can't get rid of them and do not understand how.whats your input.
Thank u,
motivated programmer
Loading
Albertto LiePosted Feb 23, 2009, 1:57 AM
u can use "using" syntax
using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
the next problem, u must know what library u need to import. :D
justin prewettPosted Feb 20, 2009, 3:01 PM
how do I import on visual C# express?,also getting rid of syntax errors after debugging.
Mahesh ChandPosted Feb 20, 2009, 2:31 PM
Welcome!
Are you talking about syntax errors? If you build the program, you will see the exact error message. It is probably you need to inport a namespace to use that red-lined class/object.