Is it possible to have a virtual/abstract field in a C# class? If so, how is it done?
See Question&Answers more detail:osIs it possible to have a virtual/abstract field in a C# class? If so, how is it done?
See Question&Answers more detail:osA Virtual/Abstract field? No. Fields are just there to hold data. There's nothing to implement.
You can define a Virtual/Abstract Property though.