Hi,
I have a series of localisation files that I use within my app. What I'm trying to do is in one action load all messages that have a particular identifier.
For example,
"Foo.Something.One"="Something 1";
"Foo.Something.Two"="Something 2";
"Foo.Something.Three"="Something 3";
"Foo.Something.Four"="Something 4";
Rather than having to explicitly read "Foo.Something.One" to "Foo.Something.Four", I'd want to read "Foo.Something.*" into a List
Can this be done?
Paul