In C#,
Is there a way to turn an automatic property into a lazy loaded automatic property with a specified default value?
Essentially, I am trying to turn th
Not like that, parameters for attributes must be constant in value, you cannot call code (Even static code).
You may however be able to implement something with PostSharp's Aspects.
Check them out:
PostSharp