off the top of my head I think you can get a list of resources. using something along the lines of
Stream[] resrouces = assembly.GetResourceStreams();
there may be an overload to pass a namespace filter like
Stream[] resrouces = assembly.GetResourceStreams("A.B.C");
if not you could either (thinking out loud)
1. pull all resources and iterate over them and filter on namespaces.
2. inerate over the assembly find resources and there respective namespaces and filter that way.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.