Member predicate Getter::trivialGetterField
Gets the field used in the trival implementation of this getter, if any.
For example, the field p
in
public class C {
int p;
public int P {
get { return p; }
set { p = value; }
}
}
Gets the field used in the trival implementation of this getter, if any.
For example, the field p
in
public class C {
int p;
public int P {
get { return p; }
set { p = value; }
}
}