How do I list all embedded resources in an assembly?

  • Thread starter Thread starter Don
  • Start date Start date
D

Don

Is there a way to iterate through all embedded resources in an assembly and
retrieve their names?

- Don
 
Don said:
Is there a way to iterate through all embedded resources in an
assembly and retrieve their names?

System.Reflection.Assembly.GetManifestResourceNames

To get the current assembly:
System.Reflection.Assembly.GetExecutingAssembly
 
Back
Top