When I use a .resx file to store fixed string values (to be bound to controls on an .aspx page), are these strings interned?

I presume the compiler reads in the strings from the XML file and replaces them as literals in the code, and therefore they become interned.

Is this correct?

link|improve this question

77% accept rate
3  
What does string.IsInterned(example) return? – Marc Gravell Jan 20 '11 at 9:47
I don't mean they are replaced as literals, actually, I don't know what happens, I'm just assuming they are injected as strings at compile-time, as they are not run-time changable, as I understand it. – nicodemus13 Jan 20 '11 at 15:01
feedback

1 Answer

up vote 0 down vote accepted

@Marc- good point. I tried it and the answer is, 'no', they're not interned, at least for the GetGlobalResourceObject() method, so I assume the same for local resources.

So, now I wonder why. Resources are meant to be constants and they are frequently used, so I would have thought interning makes sense.

Obviously, they're not literals, as they must be loaded from the XML resources file, but that shouldn't matter, should it?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.