System.IO
namespacePath
Directory
and File
DirectoryInfo
, FileInfo
DriveInfo
Stream
FileStream
existsvar fs = new FileStream("...", FileMode.Open)
will give us the streamReadByte()
Read()
will read as many bytes as specified into an arrayFileMode.Create
WriteByte()
and Write()
Close()
Flush()
methodReadAsync()
and WriteAsync()
StreamReader
, StreamWriter
TextReader
, TextWriter
Stream
(or create a FileStream
)var sw = new StreamWriter("...", false, Encoding.ASCII)
WriteLine()
WebRequest.Create()
creates a new web requestvar request = WebRequest.Create(url);
var response = await request.GetResponseAsync();
var stream = new StreamReader(response.GetResponseStream());
var content = stream.ReadToEnd();
IDisposable
interfaceClose()
method is importantDispose()
methodIDisposable
using
constructforeach
Dispose()
directlyusing(var fs = new FileStream(/* ... */)) {
/* Do something */
} // Resource automatically closed and freed
BitConverter
is a very useful class[Serializable]
is importantXmlSerializer
classSerialize()
Deserialize()
methodBinaryFormatter
Serialize()
Deserialize()
event
keyword+=
, -=
operations (outside)public event EventHandler MyEvent
to registerEventHandler
object
, EventArgs
(or derived)void
null
(check first!)