Page 11 : 40
Object-oriented Programming in C#
Input and Output Classes
* Streams
The Stream Concept
The abstract class Stream in C#
The most important members in class Stream
Subclasses of class Stream
Example: Filestreams
The using control structure
More FileStream Examples
Readers and Writers in C#
The class Encoding
Sample use of class Encoding
The class TextWriter
StreamWriter Examples
Members in class StreamWriter
The class TextReader
StreamReader Examples
Members in class StreamReader
The class BinaryWriter
BinaryWriter Members
The class BinaryReader
Members in class BinaryReader
The classes StringReader and StringWriter
The Console class
Members in the Console class
* Directories and Files
The File and FileInfo classes
Members in class FileInfo
The Directory and DirectoryInfo classes
Members in class DirectoryInfo
* Serialization
Serialization
Examples of Serialization in C#
Custom Serialization
Considerations about Serialization
Serialization and Alternatives
Attributes
* Patterns and Techniques
The Decorator Pattern
The Decorator Pattern at Run Time
The Decorator Pattern and Streams
Sample use of class Encoding
Sample encodings, conversions, and decodings of a string of Danish characters.
Output from the Encoding program.
Conversions in the example
From a unicode string to a byte array in a given encoding
(
GetBytes
-
Encoding
).
From a byte array in one encoding to a byte array in another encoding
(
Convert
)
From a byte array in a given encoding to a char array (in unicode)
(
GetChars
-
Decoding
).
From a char array (in unicode) to a unicode string encoding.
(via
String
constructor)
Finding the encoding of a given text file