I am able to work with resources and use Rez.Strings.<id> to access strings. But I have found a strange behavior that if the resource contains $ (dollar symbol), the Rez.Strings.<id> returns Number instead of string. For example:
<strings>
<string id="Abc">Abc$1$</string>
</strings>
...and:
var x = Rez.Strings.Abc;
x is now Number of 6129 or something like that.
Do you guys know about some nice workaround?
Thanks,
David