In my last post, I was asked what was my motivation in my implementation over resource files. To be honest I have none other than the fact that this is just my blog, not a definitive source of authority.
With that, here’s a separate implementation using resource files.
I added a resource file called “Spiels.resx”

The resource file has been in the App_GlobalResources folder.

I then added an entry in the resource file similar to the previous customized xml:

A reference is needed to access the resource file properties and its values. Resource files are accessed by referencing the Resources namespace. (duh)
using Resources;
Now, I have a new and improved solution for accessing spiel information text by calling its static property.

Great feedback. J Extremely useful for other types such as images and media.