Hi, I added some files in my projects resources and made them as a embedded resources. I want to get all the file names. Plz help... thanx in advance...
Hi, I added some files in my projects resources and made them as a embedded resources. I want to get all the file names. Plz help... thanx in advance...
Hi Guru, Here is the code snipet: System.Reflection.Assembly ass = System.Reflection.Assembly.GetExecutingAssembly(); string[] files = ass.GetManifestResourceNames(); for(int i=0;i<files.Length;i++) MessageBox.Show(files[i]); Thanks,