You are developing an application that will parse a large amount of text.
You need to parse the text into separate lines and minimize memory use while processing
data.
Which object type should you use?
A.
DataContractSerializer
B.
StringBuilder
C.
StringReader
D.
JsonSerializer
B.
StringBuilder
C.
The opposite of stringbuilder
A simple example:
http://www.dotnetperls.com/stringreader
C
stringbuilder and stringreader has better performance than strings for string processing activities. the question calls fro text into seperate lines. C