votes
Fields in interfaces
I have noticed the C# spec doesn't allow for fields in an interface, only methods or events. Does this mean the only feasible way for me to implement a "field" is to do something like: public interface Field { string S_set( ...
