Interface should not have properties?

后端 未结 13 1088
攒了一身酷
攒了一身酷 2021-01-07 22:43

My office colleague told me today that is bad practice to use properties in interfaces. He red that in some MSDN article(s), which I couldn\'t find (well I was trying few ti

13条回答
  •  自闭症患者
    2021-01-07 23:08

    It's bad design as you pollute the implementation's variable space which is used for storing the state with variables that used as part of the class contract.

提交回复
热议问题