[Solved] How does string works in c#? [closed]
review String Interning or .Net String Intern table or CLR Intern Pool. Basically, the Common Language Runtime (CLR) maintains a table of [unique] string values, and whenever you manipulate a string in your code, the CLR examines this intern table to see if the new value you are trying to create is already in there … Read more