Exemple #1
0
        public async Task WaitInput()
        {
            Console.Write("\r\n>: ");
            string msg = Console.ReadLine();

            _chat.PushMessage(await Send(msg), true);
            await WaitInput();
        }