Say I have the following code:
class Parent { static string MyField = \"ParentField\"; public virtual string DoSomething() { return MyField
Use a static property instead of a static variable. Then you can override the property in the child class instead of creating a "new" field.