| C# Encoding Methodusing System
public override string ReadLine();
 Internationalization (I18n) Method OverviewThe Readlinemethod 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 IssuesIf 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   
 |