✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
string str = "whfirk";
str = str.Remove (1, 2);
str = str.Insert (1, "o");
System.Console.Write(str);
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)