I wish to get a list of all strings that are used in a .net assembly including the “static” values that local variables are set to, parameters passed to methods, fields at set to, etc.
I recall from something a read a long timer ago that a .net assembly contains a tables of all strings it uses (or they can be "interned")– or am I just dreaming?
Using .NET Reflector is a good ideal (thanks thijs), I will also have a look at it's API if no-one comes up with an already written tool.
(This is so I can write a tool to check we have not missed any strings that should be translated. I could process the C# source code, however I will then have to cope with Strings that are split over many lines etc.)
I have just thought, I wish to exclude strings pass into CodeFlowException() etc, so this is already getting more complex.
PS, if you can think of a better set of tags, please retag this question.
