If I do
string someString = "hello";
char c = someString[2];
does the c variable refer to a character inside someString, or is it a new independent char on it's own?
If it is not independent, how do I copy it?
|
If I do
does the If it is not independent, how do I copy it?
| |||
feedback
|
|
then it would have been a reference. | ||||
|
feedback
|
|
It's independent because A consequent of it being a value type, a copy is thus performed. | ||||
|
feedback
|