[Modify] Polish it

This commit is contained in:
sta 2020-02-14 19:41:32 +09:00
parent 07b752e572
commit 650ccc9daf

View File

@ -226,6 +226,7 @@ namespace WebSocketSharp.Net
private static byte[] getChunkSizeBytes (int size)
{
var chunkSize = String.Format ("{0:x}\r\n", size);
return Encoding.ASCII.GetBytes (chunkSize);
}