C# 4 default parameter values: How to assign a default DateTime/object value?
- by Dr. Zim
If DateTime is an object and default C# parameters can only be assigned compile-time constants, how do you provide default values for objects like DateTime?
I am trying to initialize values in a POCO with a constructor, using named parameters with default values.