From cdd00f42a9594e0bd26bf57bfeac1b03ceb8350e Mon Sep 17 00:00:00 2001 From: Walid Chtioui <89390465+walcht@users.noreply.github.com> Date: Thu, 7 Aug 2025 06:51:09 +0200 Subject: [PATCH] fixes microsoft/vscode-mono-debug#104 --- src/csharp/Protocol.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csharp/Protocol.cs b/src/csharp/Protocol.cs index ec2f9c8..8f46c95 100644 --- a/src/csharp/Protocol.cs +++ b/src/csharp/Protocol.cs @@ -102,7 +102,7 @@ public abstract class ProtocolServer public bool TRACE_RESPONSE; protected const int BUFFER_SIZE = 4096; - protected const string TWO_CRLF = "\r\n\r\n"; + protected const string TWO_CRLF = @"\r\n\r\n"; protected static readonly Regex CONTENT_LENGTH_MATCHER = new Regex(@"Content-Length: (\d+)"); protected static readonly Encoding Encoding = System.Text.Encoding.UTF8;