Are these two statements the same?
if (dep.BirthDate.HasValue) {
myObj.GetType().GetProperty("birthdate").SetValue(myObj, (DateTime)dep.BirthDate, null);
}
myObj.GetType().GetProperty("birthdate").SetValue(myObj, dep.BirthDate ?? null, null);
I only want to set the birthdate when it has a value, but I'd like to do it in 1 line.
First of all, this does sound like a Speed Question. So, the speed rant: https://ericlippert.com/2012/12/17/performance-rant/
Secondly, the only price you get for putting a lot of things into one line are:
The first one has 6 (six) places were either of the null Reference exceptions might hit. Also a cast and reflection. It is a Exception breeding ground. Whoever will have to debug that line 6 months from now, will get nightmares from it. And that can be you.
Code readability and debugability should come first. Try to limit it to 1 operation/code line, whose result you assign to a temporary variable, to get usefull Exceptions. Never be worried about the performance impact of temporary variables. Between the Compiler, the JiT Compiler and dead code detection those will propably cut out in release builds anyway.