Text.Something not allowed in strings resource file.
Strange limitation I ran into today: If you have a resource file (*.resx) and you have string resources in it, and one of your string resource names starts with “Text.” such as:
<data name=“Text.Hello“><value>Hello</value></data>
If you do a resourceManager.GetString(“Text.Hello“) you'll get back null. I guess it's interpreting the “Text.“ as something, but from the docs I don't see what..