// 5. Display the received message:
Console.WriteLine("[Server] Message of client recieved");
string vowels = "aeiouAEIOU";
for (int i = 0; i < totalBytes; i++)
{
aChar = Convert.ToChar(incomingDataBuffer[i]);
Console.Write(aChar);
if ("aeiouAEIOU".Contains(aChar)) vowels += aChar;
Console.Write("[Server] Vowel characters deteced: " + vowels);
}
не могу понять, почему я продолжаю получать ошибки после компиляцииЛучший перегружен матч метод «string.Contains (строка)» имеет некоторые недопустимые аргументы и аргументы «1»: не удается преобразовать из «полукокса» в «строка»