Interface should not have properties?

后端 未结 13 1091
攒了一身酷
攒了一身酷 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:14

    An interface is a contract for a class to implement and I see no reason why properties should be excluded from such a contract. Furthermore, properties are intrinsic to .NET.

    As an example: ICollection has both Count and IsReadOnly.

提交回复
热议问题