This is a cool technique. Were you aware of the capability for embedding files in .NET assemblies before reading this article? Do you already use the technique or do you plan to now? If you have any questions or problems embedding files in your .NET assemblies, let us know in the vb.dotnet.technical discussion group.
Use .NET's ability to embed XML files, icons, graphicsanything you wantdirectly into your assemblies.
by Anthony Glenwright
February 13, 2003
his article describes how to use .NET's ability to embed XML files, icons and other files in an assembly so your code can access them at run-time. Embedding the files helps you avoid problems commonly associated with external files, such as missing files, difficulty locating the files at runtime, and issues with upgrading and versioning.
The ability to embed resources in an application file is not new, but the mechanism for embedding files in .NET is different then for unmanaged code, so don't expect to be able to work with embedded resources in exactly the same way as you could in unmanaged code.
Microsoft itself frequently embeds resources in application files. For example, if you load an XML file into Internet Explorer (IE), it renders the file in a TreeView-style manner, using different colors for nodes, attributes, and text content. IE accomplishes that by using an embedded resource, an XSLT stylesheet. You can access the stylesheet using the URL res://msxml.dll/DEFAULTSS.XSL (you can type this straight into IE's address field to see the stylesheet contents).
Author note: You can't use this technique to access resources embedded within .NET assemblies, because the resource files are not stored in the same way.