undefined variables ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hey
Is there any way to force the vs.net to underline undefined variables in C# ?
I know in vb.net it does so why in C# don't ? Is there any setting to change
it ?
If there is no such possibility would it be in C# 2.0 ?
Jarod

PS> If there is any free add-on which adds this function I am also
interested.
 
Inline:
--
-Philip Rieck
http://philiprieck.com/blog/

-
Jarod said:
Hey
Is there any way to force the vs.net to underline undefined variables in
C# ?

Compile your solution.C# will not show them as you type.

I know in vb.net it does so why in C# don't ? Is there any setting to
change
it ?

Short answer: Because they are different products

Long answer: See Paul Vick's posts on Background Compilation
http://www.panopticoncentral.net/archive/2004/02/25/276.aspx


If there is no such possibility would it be in C# 2.0 ?
Jarod

There is such a possibility (note that the c# language spec isn't really the
issue - it's Visual Studio). However, no one can make promises on a beta
product. They have already pulled things we saw in beta 1, and are adding
things to beta 2. Here's to hoping, but I'm betting that VB.net's
background compilation will still be better than c#'s in VS2005.
 
Back
Top