This is not exactly a WPF question, but rather a generic C# question.
I have a DLL with multiple png images added as resources. I can easily access those images in wpf when I know the full path, but I would like to add a browsing
functionality which will let me browse through all the images.
I know how to extrac class information from an assembly through reflection, but how can I obtain the embedded resources?, is this at all possible through .NET or do
I have to look into using some Win32 APIs for this ?
Thanks