Default struct with default value [Answered]
I have this struct
I also have a method which takes a parameter
RuntimeConfiguration configuration = default
, yet this default instance does not have MaxLineCount
set to the value 10000? Does default
only initialize the struct with every field to its type's default value, and not any user-provided default value?2 Replies