VS .NET IDE & C#

  • Thread starter Thread starter Scott M.
  • Start date Start date
S

Scott M.

What does it take to make the VS.NET IDE update its display of syntax errors
(blue wavy underline), once the error has been corrected? In VB.NET it
updates as soon as you move off the line of code. In C#, it seems to only do
it when you manually build the app.
 
Scott M. said:
What does it take to make the VS.NET IDE update its display of syntax
errors (blue wavy underline), once the error has been corrected? In
VB.NET it updates as soon as you move off the line of code. In C#, it
seems to only do it when you manually build the app.

VB.NET does background compilation whereas C# doesn't - therefore you need
to rebuild in C# to get rid of the wavy lines

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top