Thursday, March 25, 2010

Embedded Resources

When you work with embedded resource, you can use the following code to get a list of all the embedded resources in de current assembly:

foreach (string s in this.GetType().Assembly.GetManifestResourceNames())
System.Diagnostics.Debug.WriteLine(s);


More info on How to use assemlby embedded resources

No comments:

Post a Comment