-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
C# 7.1 and .NET Core 2.0 - Modern Cross-Platform Development - Third Edition
By :
File class and the FileInfo class?Answer: The File class has static methods, so it cannot be instantiated. It is best used for one-off tasks such as copying a file. The FileInfo class requires the instantiation of an object that represents a file. It is best used when you need to perform multiple operations on the same file.
ReadByte method and the Read method of a stream?Answer: The ReadByte method returns a single byte each time it is called and the Read method fills a temporary array with bytes up to a specified length. It is generally best to use Read to process blocks of bytes at once.
StringReader, TextReader, and StreamReader classes?Answer:StringReader is used for efficiently reading from a string stored in memory. TextReader is an abstract class that StringReader and StreamReader both inherit from, for their shared functionality...