24 lines
586 B
C#
24 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
|
|
{
|
|
public static class StreamExtensions
|
|
{
|
|
public static void CopyTo(this Stream input, Stream output)
|
|
{
|
|
byte[] buffer = new byte[32768];
|
|
while (true)
|
|
{
|
|
int read = input.Read(buffer, 0, buffer.Length);
|
|
if (read <= 0)
|
|
return;
|
|
output.Write(buffer, 0, read);
|
|
}
|
|
}
|
|
}
|
|
}
|