An expression is using the super statement in a static class member. This is not allowed because static members are associated with the class itself, while the super statement is used to access base-class members of the current instance of the class.
To correct this error
-
Replace super with a qualified reference to a particular instance of the base class.
-
Remove the static modifier.
See Also
Reference
super Statementstatic Modifier