I am having trouble declaring a const field in an abstract class. Why is this?
change
I had to clarify. My problem is that my child classes cannot see the const field:
protected const string Prefix = "dynfrm_";
If I remove the const keyword, I can jump to it from the grandson class.
source
share