Хочу сделать так:
string[] strings = msg.Split('\n');
string[] req = strings[0].Split(' ');
if (req[0] == "GET")
{
Console.Write($"{client.RemoteEndPoint} sent: {strings[0]}");
if (req[1].StartsWith("/videoinfo/"))
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(", Accepted!");
а получается хрень
почему курсор переходит в начало строки?