Changing fields to property is a breaking change under what scenarios?

后端 未结 4 661
轻奢々
轻奢々 2020-12-07 02:24

While reading Jon Skeet\'s article on fields vs properties he mentions that changing fields to properties is a breaking change.

I would like to understand the common

4条回答
  •  不思量自难忘°
    2020-12-07 03:19

    Properties can throw any arbitrary exceptions, whereas fields can't (at least when compiler knows about field assignment at compile time).

提交回复
热议问题