<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2FFile_Directory_Stream%2FTextReader_TextWriter</id>
		<title>Csharp/CSharp Tutorial/File Directory Stream/TextReader TextWriter - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2FFile_Directory_Stream%2FTextReader_TextWriter"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/File_Directory_Stream/TextReader_TextWriter&amp;action=history"/>
		<updated>2026-04-29T18:54:47Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/File_Directory_Stream/TextReader_TextWriter&amp;diff=6800&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/File_Directory_Stream/TextReader_TextWriter&amp;diff=6800&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:53Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/File_Directory_Stream/TextReader_TextWriter&amp;diff=6801&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/File_Directory_Stream/TextReader_TextWriter&amp;diff=6801&amp;oldid=prev"/>
				<updated>2010-05-26T12:20:27Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==TextWriter defines Write() and WriteLine() that output all of the built-in types. ==&lt;br /&gt;
&lt;br /&gt;
Method&lt;br /&gt;
Description&lt;br /&gt;
void Write(int val)&lt;br /&gt;
Write an int.&lt;br /&gt;
void Write(double val)&lt;br /&gt;
Write a double.&lt;br /&gt;
void Write(bool val)&lt;br /&gt;
Write a bool.&lt;br /&gt;
void WriteLine(string val)&lt;br /&gt;
Write a string followed by a newline.&lt;br /&gt;
void WriteLine(uint val)&lt;br /&gt;
Write a uint followed by a newline.&lt;br /&gt;
void WriteLine(char val)&lt;br /&gt;
Write a character followed by a newline.&lt;br /&gt;
void Close()&lt;br /&gt;
Close the stream.&lt;br /&gt;
void Flush()&lt;br /&gt;
Write any data remaining in the output buffer to the physical medium.&lt;br /&gt;
&lt;br /&gt;
==The Input Methods Defined by TextReader==&lt;br /&gt;
&lt;br /&gt;
Method&lt;br /&gt;
Description&lt;br /&gt;
void Close()&lt;br /&gt;
Closes the input source.&lt;br /&gt;
int Peek()&lt;br /&gt;
Gets the next character from the input stream without bypassing that character. Returns -1 if no character is available.&lt;br /&gt;
int Read()&lt;br /&gt;
Returns an integer representing the next character. Returns -1 when the end of the stream is encountered.&lt;br /&gt;
int Read(char[ ] buf,int offset, int numChars)&lt;br /&gt;
Attempts to read up to numChars characters into buf starting at buf[offset], returning the number of characters successfully read.&lt;br /&gt;
int ReadBlock(char[ ] buf,int offset, int numChars)&lt;br /&gt;
Attempts to read up to numChars characters into buf starting at buf[offset], returning the number of characters successfully read.&lt;br /&gt;
string ReadLine()&lt;br /&gt;
Reads the next line of text. Returns Null if it is at end-of-file.&lt;br /&gt;
string ReadToEnd()&lt;br /&gt;
Reads all of the remaining characters in a stream.&lt;br /&gt;
&lt;br /&gt;
==The TextReader and TextWriter classes are implemented by several character-based stream classes. ==&lt;br /&gt;
&lt;br /&gt;
Stream Class&lt;br /&gt;
Description&lt;br /&gt;
StreamReader&lt;br /&gt;
Read characters from a byte stream. This class wraps a byte input stream.&lt;br /&gt;
StreamWriter&lt;br /&gt;
Write characters to a byte stream. This class wraps a byte output stream.&lt;br /&gt;
StringReader&lt;br /&gt;
Read characters from a string.&lt;br /&gt;
StringWriter&lt;br /&gt;
Write characters to a string.&lt;br /&gt;
&lt;br /&gt;
==Writing to a writer==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.Collections.Specialized;&lt;br /&gt;
using System.IO;&lt;br /&gt;
using System.IO.rupression;&lt;br /&gt;
using System.Net;&lt;br /&gt;
using System.Net.Mail;&lt;br /&gt;
using System.Net.Sockets;&lt;br /&gt;
using System.Runtime.InteropServices;&lt;br /&gt;
using System.Text;&lt;br /&gt;
public class MainClass&lt;br /&gt;
{&lt;br /&gt;
    public static void Main()&lt;br /&gt;
    {&lt;br /&gt;
        using (TextWriter tw = Console.Out)&lt;br /&gt;
        {&lt;br /&gt;
            tw.Write(302.30m); &lt;br /&gt;
            tw.Write(&amp;quot;str&amp;quot;); &lt;br /&gt;
            tw.Write(true); &lt;br /&gt;
            tw.WriteLine(&amp;quot;.&amp;quot;);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;pre class=codeResult&amp;gt;302.30strTrue.&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>