✅ How to make static field required to use from interface?
I have this interface:
HandledEvents
is static because I can easily read values from it using reflection and without Activator.CreateInstance
Processor example:
the main problem HandledEvents
can be easily removed from FlightEventProcessor
and nothing will happens. compilator allows me to not implement this array inside every classes that inherit IEventProcessor
4 Replies
thanks!
because I can easily read values from it using reflectionYou should rethink your design imo. Why do these need to be static anyway?
because I don't want to create instance of the class to read values
Because no shadowing is involved
They're just entirely unrelated, period