16 public static void CopyStreamTo(
this Stream input, Stream output )
18 byte[] buffer =
new byte[32768];
21 while ( ( read = input.Read( buffer, 0, buffer.Length ) ) > 0 )
23 output.Write( buffer, 0, read );
Apufunktioita virtojen käyttöön.
static void CopyStreamTo(this Stream input, Stream output)
Kopioi virran sisällön toiseen virtaan. Sama kuin Stream.CopyTo (C# ver 4), mutta toimii myös vanhemm...