> I would like to check if there are some resx keys, which will not be
> used in the source code. Is there a plugin or another possibility to
> evaluate this issue?
I don't think that a plugin would be reliable to determine the keys that
are used by a general arbitrary program. Imagine that your resx contains a
key named "string123" and your code does:
int i=123;
key ="string"+i;
x = GetGlobalResourceObject("WebResource",key);
This uses your "string123", but how would an automated tool conclude this
from the source code? What if the "i" variable above is a computed value
that depends on inputs provided at runtime?
schaf - 06 Mar 2008 10:49 GMT
On 6 Mrz., 11:43, "Alberto Poblacion" <earthling-
quitaestoparacontes...@poblacion.org> wrote:
> > I would like to check if there are some resx keys, which will not be
> > used in the source code. Is there a plugin or another possibility to
[quoted text clipped - 11 lines]
> from the source code? What if the "i" variable above is a computed value
> that depends on inputs provided at runtime?
No I would like to do just a short check if all my keys in the resx
are also used in the code. I do not compose keys so maybe this check
can be done ?