通过CodeModel获取部分类的ProjectItems

发布于 2024-08-19 21:04:57 字数 191 浏览 5 评论 0原文

我已经看到寻找一种方法来获取已知类的 ProjectItems(文件)列表,该类是从几个部分类生成的。我使用 CodeModel 来搜索类并访问 ProjectItem 来执行操作,这对于普通类来说效果很好。但是,当涉及到分部类时,ProjectItem 属性会提供一个文件,但不提供构成该分部类的其他文件。 如何通过部分类访问构成该类的其他 ProjectItems

I have seen looking for a way to get the list of ProjectItems (files) for a known class, which generated from several partial classes. I use CodeModel to search for a class and accessing the ProjectItem to do stuff, which works fine for normal classes. But when it comes to partial classes, the ProjectItem property give one file but dont provide the other files which make this partial class.
How can I access the other ProjectItems that make up the class , through partial classes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不疑不惑不回忆 2024-08-26 21:04:57

看起来原始发帖者确实在 MSDN 论坛。也将其链接回此处以供参考。

给定一个 EnvDTE.CodeClass,将其转换为 EnvDTE80.CodeClass2 并使用 CodeClass2.Parts 属性获取其他(类)代码元素,其 ProjectItem 属性为您提供部分类的文件。

Looks like the original poster did find the answer to the question on the MSDN Forum. Linking it back here as well for reference.

Given an EnvDTE.CodeClass, cast it to EnvDTE80.CodeClass2 and use the CodeClass2.Parts property to get the other (class) code element, whose ProjectItem property gives you the file of the partial class.

两人的回忆 2024-08-26 21:04:57

你是递归地这样做吗?如果您只查询 EnvDTE.Project.ProjectItems,您将仅获得第一级的项目项,您还必须查询 EnvDTE.ProjectItem.ProjectItems。

Are you doing so recursively? If you just query EnvDTE.Project.ProjectItems you'll get only the project items at the first level, you'll have to EnvDTE.ProjectItem.ProjectItems as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文