Appearance
🏷️ C#
public void test(int i) { lock (this) { if (i > 10) { Console.WriteLine(i); i--; test(i); } } }