积极答复者
在VS里面光标在对象上,然后按F1查帮助信息,MSDN定位出错的问题。

问题
-
比如 System.Data.Common.DbDataAdapter.Fill 这个对象的方法
将光标移到对象(或变量)名上,在编辑框的上方的两个小方框里能够显示该对象(或变量)的NameSpace和定义,如:
System.Data.Common.DbDataAdapter.Fill
virtual protected int Fill(DataTable[] dataTables, int startRecord, int maxRecords, IDbCommand command, CommandBehavior behavior){...}
但是在按F1对进行查找时,却发生错误了
本来正确的位置应该是:
Library Home
Visual Studio 2010
.NET Framework 4
.NET Framework Class Library ()
System.Data Namespaces ()
System.Data.Common Namespace ()
DbDataAdapter Class (System.Data.Common)
DbDataAdapter Methods (System.Data.Common)
DbDataAdapter.Fill Method (DataSet, String) (System.Data.Common)但实际上MSDN找出来的位置是
Library Home
Visual Studio 2010
Visual Studio
Visual Studio Languages
Visual C++
Visual C++ Reference
Visual C++ Libraries Reference
Standard C++ Library Reference
Header Files
<array>
<array> Classes
array Class (TR1)
array::fill显然这个fill并不是我要找的,它好像是根据fill这个名字在MSDN库里面随意给出一个的,但是在MSDN跟要找的这个名字重名的可太多了。
现在的情况是所有的对象(变量)按F1查找都是错误的,请问怎么解决?- 已移动 VisualEleven 2011年4月10日 10:34 C# (发件人:Visual C++)
答案
-
托管代码里面的类型检测得等C++/CLI的智能感知在下个版本中实现了,在这之前只能靠猜。
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP- 已标记为答案 bitfish_jzl 2011年4月11日 4:05
全部回复
-
托管代码里面的类型检测得等C++/CLI的智能感知在下个版本中实现了,在这之前只能靠猜。
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP- 已标记为答案 bitfish_jzl 2011年4月11日 4:05
-
谢谢,希望下个版本快点实现这个功能吧。
因为经常要这样查MSDN,如果能够智能一点找到,可以极大提高工作效率.
- 已标记为答案 bitfish_jzl 2011年4月11日 4:05
- 取消答案标记 bitfish_jzl 2011年4月11日 4:05
- 已编辑 bitfish_jzl 2011年4月11日 4:08 熟悉一下操作