From 8357ed025c82b88a4f99efcab2ffe9e36be22968 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 24 Jun 2019 21:45:32 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Ext.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index f311db51..d2c06441 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1231,7 +1231,9 @@ namespace WebSocketSharp return Encoding.UTF8.GetBytes (s); } - internal static void WriteBytes (this Stream stream, byte[] bytes, int bufferLength) + internal static void WriteBytes ( + this Stream stream, byte[] bytes, int bufferLength + ) { using (var input = new MemoryStream (bytes)) input.CopyTo (stream, bufferLength);