March 2016
Intermediate to advanced
550 pages
10h 57m
English
File class and the FileInfo class?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?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, the ...Read now
Unlock full access