using System; using System.Resources; using System.Reflection; namespace ResourcesDemo { /// <summary> /// Class for resource retrival /// </summary> public class ResourceText { private ResourceText() {} private static ResourceManager _resourceManager; public static void InitializeResources() { Assembly assembly = Assembly.GetExecutingAssembly(); _resourceManager = new ResourceManager("ResourcesDemo.TextRes", assembly); _resourceManager.IgnoreCase = true; } public static string GetString(string key) { try { string s = _resourceManager.GetString( key ); if( null == s ) throw(new Exception()); return s; } catch { return String.Format("[?:{0}]", key); } } } }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here
Math Primers for Programmers