W Wanjun Yu Oct 24, 2006 #1 What is the class name for open/write/read a text file? I can't find it in the reference book. Thanks! WJ
What is the class name for open/write/read a text file? I can't find it in the reference book. Thanks! WJ
T Tom Porterfield Oct 24, 2006 #2 Wanjun said: What is the class name for open/write/read a text file? I can't find it in the reference book. Thanks! Click to expand... TextReader is the abstract base class for both StreamReader and StringReader, in the System.IO namespace. See Reading Text from a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconReadingTextFromFile.asp and Writing Text to a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconWritingTextToFile.asp.
Wanjun said: What is the class name for open/write/read a text file? I can't find it in the reference book. Thanks! Click to expand... TextReader is the abstract base class for both StreamReader and StringReader, in the System.IO namespace. See Reading Text from a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconReadingTextFromFile.asp and Writing Text to a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconWritingTextToFile.asp.
W Wanjun Yu Oct 24, 2006 #3 Thanks! Wanjun Tom Porterfield said: TextReader is the abstract base class for both StreamReader and StringReader, in the System.IO namespace. See Reading Text from a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconReadingTextFromFile.asp and Writing Text to a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconWritingTextToFile.asp. Click to expand...
Thanks! Wanjun Tom Porterfield said: TextReader is the abstract base class for both StreamReader and StringReader, in the System.IO namespace. See Reading Text from a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconReadingTextFromFile.asp and Writing Text to a File at http://msdn.microsoft.com/library/en-us/cpguide/html/cpconWritingTextToFile.asp. Click to expand...