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?
string.IsInterned(example)
return? – Carnation