C# Encoding Method
using System
public override string ReadLine();
Internationalization (I18n) Method Overview
The Readline method reads a line of characters from the current stream
and returns the data as a string.
See Microsoft's
MSDN online documentation for more information.
I18n Issues
If the current stream may contain non-English text, then you will need to
ensure that you have opened it with the correct encoding (a Unicode encoding,
such as UTF-8 or UTF-16, is recommended).
C# Encoding Information
|