We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32ab650 commit b58ed04Copy full SHA for b58ed04
Enyim.Caching/Memcached/Protocol/Text/TextSocketHelper.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.IO;
3
using System.Text;
4
using System.Collections.Generic;
@@ -58,7 +58,7 @@ public static string ReadResponse(PooledSocket socket)
58
/// <returns></returns>
59
private static string ReadLine(PooledSocket socket)
60
{
61
- MemoryStream ms = new MemoryStream(50);
+ var ms = new MemoryStream(50);
62
63
bool gotR = false;
64
//byte[] buffer = new byte[1];
0 commit comments