Here\'s my code so far:
public void DeserialStream(string filePath) { using (StreamReader sr = new StreamReader(filePath)) { str
You can use a regex like this:
\"DataType\"\,\"(?:Count|Net)\"((?!\"DataType\").)*
This would match the DataType line all the way to the next DataType line.