I was wondering... If I want to store a MASSIVE string in my program and also store sub strings of the main string (i.e. store every word and store every sentence as arrays of strings) how can I do so without making 2 copies of the first massive string?
In C++ I would just use pointers to parts of the string... Is there an equivalent method in C#?