获取控制台应用程序中引用的项目的所有命名空间
我有一个控制台应用程序,并且我向该控制台应用程序添加了对 2 个项目(CustomerService.DataAccess 和 CustomerService.Business)的引用,现在,当控制台应用程序运行时,我希望获取我添加到的 2 个项目中的所有命名空间控制台应用程序。谢谢。
I have a console app and I added a reference to 2 projects to this console app, CustomerService.DataAccess and CustomerService.Business, Now, when the console app runs i would like to get all namespaces that are in the 2 projects that i added to the console app. Thankx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要首先获取引用的程序集,然后从该程序集中的所有类型获取命名空间集。
上面的代码将获取引用程序集中不在 GAC 中的所有命名空间。如果您只想获取特定程序集中的命名空间,则只需检查
AssemblyName.Name
属性,以确保您正在检查正确的程序集。To do this, you need to first get the referenced assemblies, and then get the set of namespaces from all of the types in that assembly.
The code above will get all of the namespaces in referenced assemblies that are not in the GAC. If you only want to get the namespaces in your specific assemblies, you can just check the
AssemblyName.Name
property to make sure you are inspecting the correct assemblies.