关于VC#2005 express“错误列表” [英] About VC# 2005 express "error list"

查看:66
本文介绍了关于VC#2005 express“错误列表”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我是C#的新手,只是安装了VC#2005快递版,而且我之前已经安装了VB 2005 Express。但我看到一个可能被称为Visual C#2005 express的东西。 bug?


例如,在我编写的VB 2005快递中,如果有一个

编码错误,错误会显示在下面的错误列表中屏幕

在编码期间和开始调试之前。


但是在VC#2005快递中,如果有编码错误,通常你会看到

错误列表中的错误您调试程序后或在屏幕上的某个位置点击

。当你输入时,目前的语法错误不会同时显示。


为什么VC中存在编码错误跟踪问题? 2005年

快递?


谢谢。

Hello,
I''m very new to C# and just installed VC# 2005 express edition and i
have VB 2005 express installed previously. But i saw a thing which may
be called as a "Visual C# 2005 express" bug?

For example, in VB 2005 express while i was coding, if there''s a
coding error, errors are displayed in error list below the screen
immediately during coding and before starting debugging.

But in VC# 2005 express, if there''s a coding error, usually you see
the error in error list AFTER you debug your program or click
somewhere on the screen late. The present syntax errors aren''t
displayed simultaneously while you''re typing.

Why is there a problematic coding-error tracking problem in VC# 2005
express?

Thanks.

推荐答案

kimiraikkonen写道:
kimiraikkonen wrote:

[...]

但是在VC#2005快递中,如果有编码错误,通常你会看到

错误列表中的错误调试程序后或者在屏幕上的某个地方点击

。当你输入时,目前的语法错误不会同时显示。


为什么VC中存在编码错误跟踪问题? 2005

快递?
[...]
But in VC# 2005 express, if there''s a coding error, usually you see
the error in error list AFTER you debug your program or click
somewhere on the screen late. The present syntax errors aren''t
displayed simultaneously while you''re typing.

Why is there a problematic coding-error tracking problem in VC# 2005
express?



我看到两种可能性,我都不会考虑错误:


* Express版本通常会安装不同的默认设置

比零售版本,因为它们通常针对的是一个有点不同的受众(尽管Express是恕我直言的

有用用于更高级的编程)。因此有可能这个

行为是由某些用户设置控制的,而不是在Express中禁用,而是

而不是默认关闭。这不是一个错误;你只需要
需要打开这个功能。


* Express版本显然具有特定的功能

受到尊重到零售版本。我的经验是

,完全禁用的东西并不是基本的

可用性问题就像你提到的那样,所以如果

这就是答案。但这是一种可能性,如果事实证明没有用户设置来控制这种行为,我会说

缺乏实时错误显示是两个版本之间故意设计差异的结果。再一次,这不会是一个错误。


我没有真正花时间研究这个,所以我不能告诉你

是否有用户设置,如果是这样的话。但是我不认为我会把Express版本的行为称为bug。无论是什么

的解释,它更有可能是设计的故意部分

的软件。


Pete

I see two possibilities, neither of which I''d consider a bug:

* The Express editions generally install different default settings
than the retail versions, because they are generally targeted at a
somewhat different audience (even though Express is IMHO surprisingly
useful for even more advanced programming). So it''s possible this
behavior is controlled by some user setting, not disabled in Express but
rather just turned off by default. This wouldn''t be a bug; you just
need to turn the feature on.

* The Express editions obviously have specific functionality that
is limited with respect to the retail versions. My experience has been
that the sorts of things that are completely disabled aren''t basic
usability issues like the one you mentioned, so it would surprise me if
that''s the answer here. But it is a possibility, and if it turns out
that there''s no user setting to control that behavior, I''d say that the
lack of the real-time error display is a consequence of an intentional
design difference between the two versions. Again, this wouldn''t be a bug.

I haven''t really spent any time looking into this, so I can''t tell you
whether there''s a user setting, and if so where it is. But I don''t
think that I''d call the Express edition''s behavior a "bug". Whatever
the explanation, it''s more likely it''s an intentional part of the design
of the software.

Pete


kimiraikkonen写道:
kimiraikkonen wrote:

你好,

我''这是C#的新手,刚刚安装了VC#2005快递版,而我之前已经安装了VB 2005 Express。但我看到一个可能被称为Visual C#2005 express的东西。 bug?


例如,在我编写的VB 2005快递中,如果有一个

编码错误,错误会显示在下面的错误列表中屏幕

在编码期间和开始调试之前。


但是在VC#2005快递中,如果有编码错误,通常你会看到

错误列表中的错误您调试程序后或在屏幕上的某个位置点击

。当你输入时,目前的语法错误不会同时显示。


为什么VC中存在编码错误跟踪问题? 2005

快递?


谢谢。
Hello,
I''m very new to C# and just installed VC# 2005 express edition and i
have VB 2005 express installed previously. But i saw a thing which may
be called as a "Visual C# 2005 express" bug?

For example, in VB 2005 express while i was coding, if there''s a
coding error, errors are displayed in error list below the screen
immediately during coding and before starting debugging.

But in VC# 2005 express, if there''s a coding error, usually you see
the error in error list AFTER you debug your program or click
somewhere on the screen late. The present syntax errors aren''t
displayed simultaneously while you''re typing.

Why is there a problematic coding-error tracking problem in VC# 2005
express?

Thanks.



这不是错误。

c#不会像vb.net那样进行连续增量构建(这是一个很好的

的事情),因此没有能力突出语法

错误在飞行中。


JB

This is not a bug.
c# doesnt do continual incremental builds as vb.net does (this is a good
thing) and therefore does not have the ability to highlight syntax
errors "on-the-fly".

JB


John B写道:
John B wrote:

这不是一个bug。
This is not a bug.



我认为这可能是真的。但是......

I think that''s probably true. But...


c#并不像vb.net那样进行连续的增量构建(这是一个很好的

的事情),因此没有有能力突出显示语法

错误在运行中。
c# doesnt do continual incremental builds as vb.net does (this is a good
thing) and therefore does not have the ability to highlight syntax
errors "on-the-fly".



这绝对不是真的。在我使用的零售Visual Studio 2005中,C#不断评估我输入的内容,突出显示错误,并在错误输出窗格中列出它们。


Pete

That''s definitely not true. In the retail Visual Studio 2005 that I
use, C# is constantly evaluating what I type, highlighting errors and
listing them in the error output pane.

Pete


这篇关于关于VC#2005 express“错误列表”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆