string-table

Where do Java and .NET string literals reside?

A recent question about string literals in .NET caught my eye. I know that string literals are interned so that different strings with the same value refer to the same object. I also know that a string can be interned at runtime: string now = DateTime.Now.ToString().Intern(); Obviously a string that is interned at runtime resides on t...

Windows Form with String Table

I have Normal Windows Form (WinForm) C# (.Net 3.5) application, this application has label with text and menus and etc... also this application display sometimes Message Boxes to the user, and write some information to files. I would like that all information that the user can see (by GUI or by files) will be manage by (One, if it possi...