The docs for Dictionary.TryGetValue say:
When this method returns, [the value argument] contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed unin
I need to mimic this in my class. How do I find the default value for type T?
How can this question be modified to make it show up in the search?
Exact duplicate of Returning a default value. (C#)