public class C { private int v; public C(int t){ v = t; } public int V { get {return v * 2;} set {v = value + 3;} } }