How can I get a string from resources using a string? :)
Example, that not works:
<string id="test">1</string>
var name = "test";
Rez.Strings.name;
I know Rez.Strings.test works, but I have many strings and dont wont to create an array like [Rez.Strings.test, Rez.Strings.test2, Rez.Strings.test3] etc.
Thx for help :)