Is there any difference between named arguments and default constructor arguments for an attribute?
Is there any difference between these attributes? Is one better to use than the other?
2 Replies
The BCL prefers properties, because adding a new default ctor parameter can be a breaking change if you don't leave the old constructor there
Thanks for that insight!