Hides an issue where the default literal yields 0 instead of null on nullable value types
unlike the default operator which yields null. This can lead to the Build() method of
Builder class converting null to 0 which can have unexpected side effects.
Hides an issue where the default literal yields 0 instead of null on nullable value types unlike the default operator which yields null. This can lead to the
Build()
method ofBuilder
class converting null to 0 which can have unexpected side effects.