On Fri, Dec 01, 2006 at 07:43:05PM -0200, Carlos Adriano Portes wrote: > Could you give me an example of such methods?
For a given assembly, you can use assembly.GetManifestResourceNames () to get a string[] of the names of the resources in the asssembly. So for each string in Assembly.GetEntryAssembly ().GetManifestResourceNames (), check if the string.EndsWith (my_resource_name) and you should be able to find the one you want. -pete _______________________________________________ Gtk-sharp-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
