示例#1
0
        public override bool Send(string command)
        {
            DebuggerInput.Write(CONTENT_LENGTH + command.Length.ToString() + TWO_CRLF + command);
            DebuggerInput.Flush();

            return(true);
        }
示例#2
0
        public override bool Send(string command)
        {
            byte[] bytes       = Encoding.UTF8.GetBytes(command);
            string commandSize = bytes.Length.ToString();

            DebuggerInput.Write(CONTENT_LENGTH + commandSize + TWO_CRLF + command);
            DebuggerInput.Flush();

            return(true);
        }