作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用以下代码:
Object projObj = htProjects[selectedNode]; // htProjects is a Hashtable:key-project Name,value-ENVDTE.Project
Project selectedProject = (Project)projObj;
我收到以下错误:
Unable to cast COM object of type 'System.__ComObject' to interface type 'EnvDTE.Project'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{866311E6-C887-4143-9833-645F5B93F6F1}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
我尝试按照提到的方式注册 DLLS here但似乎还有其他问题。
最佳答案
找到解决方案。一些哈希表条目将 ENVDTE.ProjectItems 作为值。因此需要进行检查。
代码:
if (projObj is Project)
{
Project selectedProject = (Project)projObj;
MessageBox.Show(selectedProject.FullName);
}
else if(projObj is ProjectItem)
{
ProjectItem selectedProject = (ProjectItem)projObj;
MessageBox.Show(selectedProject.get_FileNames(1));
}
关于c# - 如何将 ComObject 转换为 ENVDTE.Project?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14291769/
我是一名优秀的程序员,十分优秀!