Basically what I'm doing is reading in a large input of data to put into a structure which then goes into a generic collection. What I am needing to do is search that large amount of input for certain strings (example of such would be something like "Option=value").
"Option=value" would be a part of a larger string that I've read into memory. I want to find if "Option=value" exists and where so that I can put that value into my structure.
How should I go about doing this?