I'm trying to figure out how to override the value of a propery for a parent class in a child class.
For example, i have
public
{
public class Child
But the virtual and override keywords raise errors during compilation. They work if i setup accessors, but I shouldn't have to do that (should I?).
Is it possible to make them consts, also?