E
Size: a a a
E
AM
class Test {
int _p = -1;
public int P {
get {
return _p;
}
set {
_p = value;
}
}
}
static class Program {
static void Main() {
void inner_func(Action f) {
f();
}
Test p = new Test();
p.P = -1;
if (p.P == -1) {
return;
}
p.P = 0;
inner_func(Program.Main);
}
}
AM
G
class Test {
int _p = -1;
public int P {
get {
return _p;
}
set {
_p = value;
}
}
}
static class Program {
static void Main() {
void inner_func(Action f) {
f();
}
Test p = new Test();
p.P = -1;
if (p.P == -1) {
return;
}
p.P = 0;
inner_func(Program.Main);
}
}
G
AM
AM
G
G
AM
G
G
AM
G
AM
G
G
G
AM