I have to code a class with heavy memory allocation considerations.
This class have strings all over the place like so
var data = GetPropertyValue<GSData>(response.BaseData, "scriptData");
Just like "scriptData" there are over 10 strings declared "in place"
Another programmer made some public const string for a few of these strings that where needed outside the class.
I was wondering if I should create private const string for the rest of the "in place" strings that are repeated in multiple times in the class.
My questions are:
- What the difference in memory consumption will be?
- What about reserving memory using const against using "in place"?
I need to understand what the compiler does when there are strings like "textA" defined in several places in a class (over multiple methods), what happens in memory when the program run, and so on.
Thanks!