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

后端 未结 4 662
轻奢々
轻奢々 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:04

    If you have a public field and another assembly has code that is using it, it will need to be recompiled.

    IOW the definition of breaking includes "will need to be recompiled".

提交回复
热议问题