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