I am trying to access a resx in c# codebehind.
I've seen this answer: read string from .resx file in C#
, but have no idea what to put in place of "items" in this statement:
ResourceManager rm = new ResourceManager("items", Assembly.GetExecutingAssembly());
where can i see the namespace of the resx?
Thanks