Article notes

What is the region of the .NET base class libraries devoted to file-based (and memory-based) input and output (I/O) services?
What in I/O manipulation represents a chunk of data flowing between a source and a destination?
What, as a concept, is a sequence of bytes?
What provides a common way to interact with a sequence of bytes regardless of the type of device that stores or displays the bytes (file, network connection, printer, etc.)?
What term refers to the process of persisting the state of an object into a stream?
System.IO is a namespace in .NET relating to what kinds (2) of services?
What class in .NET (in System.IO) provides temporary storage for a stream of bytes that you can commit to storage later?
What class in System.IO for manipulating a machine's directory structure exposes functionality through static members only?
What class in System.IO for manipulating a machine's directory is used to make objects (instances)?
What class in System.IO provides detailed information about the drives that a given machine uses?
What class in System.IO for manipulating a machine's set of files exposes functionality through static members only?
What formatter from System.Text.Json can be used to persist the public state of an object as JSON?
What class in System.IO for manipulating a machine's set of files is used to make objects (instances)?
What class in System.IO gives you random file access (e.g., seeking capabilities) with data represented as a stream of bytes?
What is the abstract class which is the parent of DirectoryInfo and FileInfo in System.IO?
What member of FileSystemInfo has the name of the file or directory (C#)?
What member of FileSystemInfo has the full path of the file or directory (C#)?
What member of DirectoryInfo is used to delete a directory and all of its contents?
What member of DirectoryInfo is used to move a directory and its contents to a new path?
Previous Next