
How to read values from .resx file in Ranorex
How to read values from .resx file in Ranorex
How can i read values in Myresources.resx in Ranorex main code 

- Support Team
- Site Admin
- Posts: 12145
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Houston, Texas, USA
- Contact:
Re: How to read values from .resx file in Ranorex
There are several ways, for all of them samples can easily found by asking Google...
One way is to use the ResourceManager class:
Alex
Ranorex Support Team
One way is to use the ResourceManager class:
ResourceManager rm = new ResourceManager("Namespace.ResourceFileName", Assembly.GetExecutingAssembly()); string myString = rm.GetString("MyString");Regards,
Alex
Ranorex Support Team