Quantcast
Channel: Getting a string dynamically from strings resources - Stack Overflow
Browsing latest articles
Browse All 6 View Live

Answer by batmaci for Getting a string dynamically from strings resources

There is much simpler way of doing this [NameOfyourResxfile].ResourceManager.GetString("String Name"); in your case strings.resx.ResourceManager.GetString("someString");

View Article


Answer by A.Dara for Getting a string dynamically from strings resources

You can write a static method like this: public static string GetResourceTitle<T>(string key) { ResourceManager rm = new ResourceManager(typeof(T)); string someString = rm.GetString(key); return...

View Article


Answer by skamlet for Getting a string dynamically from strings resources

I had the same problem using ASP.NET Core MVC and managed to solve it using ResourceManager rm = new ResourceManager(typeof(YourResourceClass)); string someString = rm.GetString("someString"); Very...

View Article

Answer by Bart Friederichs for Getting a string dynamically from strings...

A little searching did the trick. I have the right ResourceManager available in my strings class: ResourceManager rm = strings.ResourceManager; string someString = rm.GetString("someString");

View Article

Answer by Vlad for Getting a string dynamically from strings resources

ResourceManager.GetString should do. Stripped down example from MSDN: ResourceManager rm = new ResourceManager("RootResourceName", typeof(SomeClass).Assembly); string someString =...

View Article


Getting a string dynamically from strings resources

I am working on a localised C#.NET application and we are using a strings.resx file to translate hardcoded strings in the application. I use the following code to extract them: using...

View Article
Browsing latest articles
Browse All 6 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>