本文介绍了是否有可能为视觉工作室中的动态对象提供智能感知?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在项目中使用动态对象,我想为对象提供智能感知。我理解Visual Studio不知道什么显示intellisense,但如果我可以插入intellisense,我知道什么条目应该显示。



有没有办法扩展Visual Studio的intellisense?

解决方案

你可以使用编辑器扩展点。



您可以在本页底部找到扩展Intellisense的具体信息:





从此页面,您可以获取有关和这是您必须实现以提供自动完成的两个接口。


I am using dynamic objects in a project, and I'd like to provide intellisense for the object. I understand that Visual Studio can't know what to show for intellisense, but if I can plug into the intellisense, I do know what entries should show up.

Is there a way to extend Visual Studio's intellisense? If so, any pointers?

Thanks!

解决方案

You can use Editor Extension Points.

You can find specific information for extending Intellisense near the bottom of this page:

Editor Extension Points

From this page you can get information about ICompletionSource and ICompletionSourceProvider which are the two interfaces you must implement to provide autocompletion.

这篇关于是否有可能为视觉工作室中的动态对象提供智能感知?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 23:50