fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var text = "text";
  6. ChangeText(text);
  7. WriteLine(text);
  8. ChangeText(ref text);
  9. WriteLine(text);
  10. }
  11. static void ChangeText(string text) => text = "new text";
  12. static void ChangeText(ref string text) => text = "new text";
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/194151/101
Success #stdin #stdout 0.02s 15784KB
stdin
Standard input is empty
stdout
text
new text