3
Answers

help

justin  prewett

justin prewett

16y
3.9k
1
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

Answers (3)
0
Albertto Lie

Albertto Lie

NA 309 0 16y
on the top of u'r .cs file there is lot of import syntax
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
0
justin  prewett

justin prewett

NA 6 0 16y
yes, u hit it on the nail.

           how do I import on visual  C# express?,also getting rid of syntax errors after debugging.
0
Mahesh Chand

Mahesh Chand

2 286.9k 123.7m 16y

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.