I'm using reflection to loop through a Type's properties and set certain types to their default. Now, I could do a switch on the type and set the default(Type) explicitly, but I'd rather do it in one line. Is there a programmatic equivalent of default?
|
|
|
|
|
|
|
|
||
|
|
|
|
Can't find anything simple and elegant just yet, but I have one idea: If you know the type of the property you wish to set, you can write your own |
||
|
|
|
|
Have you tried the |
||
|
|
|
I do the same task like this.
|
||
|
|
