using System;
public class Program
{
public static void Main()
string text = "text";
ChangeText(text);
Console.WriteLine(text);
}
static void ChangeText(string text) {
text = "new text";