<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/'><id>tag:blogger.com,1999:blog-35403832.post8932669846314445384..comments</id><updated>2007-03-19T08:09:12.877+01:00</updated><category term='C#'/><category term='NAnt-Extensions'/><category term='Visual Studio'/><category term='Continuous Integration'/><category term='jQuery'/><category term='git'/><category term='TeamCity'/><category term='PDFWebViewer.NET'/><category term='.NET General'/><category term='SQL Server'/><category term='AJAX'/><category term='Sitefinity'/><category term='Castle'/><category term='MSBuild'/><category term='Servers'/><category term='ASP.NET MVC'/><category term='ASP.NET'/><title type='text'>Comments on Alanta Developer Notes: Stream to stream copy</title><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.alanta.nl/feeds/8932669846314445384/comments/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/35403832/8932669846314445384/comments/default'/><link rel='alternate' type='text/html' href='http://blog.alanta.nl/2007/03/john-skeet-wrote-excellent-article.html'/><author><name>Marnix</name><uri>http://www.blogger.com/profile/00913090261390882195</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_G_mDY8FPULY/S1Agl88Q1qI/AAAAAAAAAAc/3rqXrGO2sNM/S220/ikke2.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-35403832.post-3817267966755077340</id><published>2007-03-18T21:38:00.000+01:00</published><updated>2007-03-18T21:38:00.000+01:00</updated><title type='text'>public static void StreamCopy(Stream input, Stream...</title><content type='html'>public static void StreamCopy(Stream input, Stream output)&lt;BR/&gt;   {&lt;BR/&gt;      byte[] buffer = new byte[2048];&lt;BR/&gt;      do&lt;BR/&gt;      {&lt;BR/&gt;         int read = input.Read(buffer, 0, buffer.Length);&lt;BR/&gt;         output.Write(buffer,0,read);&lt;BR/&gt;      } while (read &gt; 0);&lt;BR/&gt;   }</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/35403832/8932669846314445384/comments/default/3817267966755077340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/35403832/8932669846314445384/comments/default/3817267966755077340'/><link rel='alternate' type='text/html' href='http://blog.alanta.nl/2007/03/john-skeet-wrote-excellent-article.html?showComment=1174250280000#c3817267966755077340' title=''/><author><name>Frank Rem</name><uri>http://www.blogger.com/profile/03571699799623279431</uri><email>noreply@blogger.com</email><gd:image xmlns:gd='http://schemas.google.com/g/2005' rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:in-reply-to xmlns:thr='http://purl.org/syndication/thread/1.0' href='http://blog.alanta.nl/2007/03/john-skeet-wrote-excellent-article.html' ref='tag:blogger.com,1999:blog-35403832.post-8932669846314445384' source='http://www.blogger.com/feeds/35403832/posts/default/8932669846314445384' type='text/html'/><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='blogger.itemClass' value='pid-1046871681'/></entry></feed>
