Visual Studio not displaying compile time errors i

2020-02-20 05:46发布

For example, when I write:

string x = "turtle";
x.Go();

There is no red squiggly line detecting the absence of the Go() method on String.

Only when I compile does the error get detected.

I've just upgraded to Windows 7, I have Visual Studio 2008.

In my old environment the errors were detected before the actual compile.

Is there a setting that I am missing?

EDIT: "Tools -> Options -> Text Editor -> C# -> Underline errors in the editor" is checked.

I dont have the "Live Semantic" option. Maybe I need to go to SP1?

7条回答
兄弟一词,经得起流年.
2楼-- · 2020-02-20 06:28

JavaScript Type Checking Sometimes type checking your JavaScript code can help you spot mistakes you might have not caught otherwise. You can run the TypeScript type checker against your existing JavaScript code by simply adding a // @ts-check comment to the top of your file.

// @ts-nocheck 

let easy = true;
easy = 42;

Tip: You can also enable the checks workspace or application wide by adding "javascript.implicitProjectConfig.checkJs": true to your workspace or user settings and explicitly ignoring files or lines using // @ts-nocheck and // @ts-ignore. Check out the docs on JavaScript in VS Code to learn more.

查看更多
何必那么认真
3楼-- · 2020-02-20 06:29

Restarting VS solved my problem once.

查看更多
\"骚年 ilove
4楼-- · 2020-02-20 06:30

You need to turn on the underline errors in the editor and show live semantic errors options in Visual Studio.

These options can be found here:

Tools > Options > Text Editor > C# > Advanced > Editor Help

Edit: You will need to install SP1 for this functionality to work.

查看更多
forever°为你锁心
5楼-- · 2020-02-20 06:30

For visual studio 2015 and higher:

Go to: Tools > Options > Text Editor > C# > Advanced > Editor Help

Then select: Enable Full solution analysis

查看更多
何必那么认真
6楼-- · 2020-02-20 06:32

my solution; I know it won't help like 80% of the viewers, but for the sake of who it will: i have had a lot of noise in the IOS part of the solution, a VS bug that showed a lot of errors that weren't supposed to appear, so I just deleted the IOS part because I didn't really needed it as I didn't even had a Mac server to test it on... Something happened after that and the squiggly line returned! Seriously, VS team, fix your bugs...

查看更多
贪生不怕死
7楼-- · 2020-02-20 06:34

Select Tool -> Options, then Text Editor. Under the language you are using (ie C#), go to the Advanced and make sure the Underline errors in the editor and Show live semantic errors are checked

查看更多
登录 后发表回答