StreamReader inFile = new StreamReader("name.txt");while ((inValue = inFile.ReadLine()) != null)
Using the above segment of code, inValue would be defined as what type of data??
A. ?StreamReader
B. ?int
C. ?text
D. ?string
Answer: D
Computer Science & Information Technology