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