✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public static void Add (out string s)
{
string word = "Сонце!";
s = s + word + "День чудовий!";
}
public static void Main()
{
string s = "Мороз!";
Add (out s);
System.Console.Write(s);
}
Вкажіть результат виведення на консоль після виконання програми.
(**CharpBase**)