read only means you can only read :D so try this:
private static int _f = a + 5;
public static int f
{
get { return _f; }
set { _f = a + 5; }
}
read only means you can only read :D so try this:
private static int _f = a + 5;
public static int f
{
get { return _f; }
set { _f = a + 5; }
}