Ejemplo n.º 1
0
        private void InputEnter_Command_Excute()
        {
            var    bytes   = Encoding.UTF8.GetBytes(_InputTextbox);
            string CmdLine = new string(bytes.Select(b => (char)b).ToArray());

            serverProcess.ConsoleInput(CmdLine);
            _InputTextbox = "";
        }