using System;
int n = 3;
F();
Console.WriteLine(n);
G();
static void F()
{
// ++n; // nope
}
void G()
++n; // fine, I'll use that, it works ... :(