|
|
|
|
|
by billmcneale
268 days ago
|
|
> if (customer?.Profile is not null)
>{
> // Null-coalescing (??)
> customer.Profile.Avatar = request.Avatar ?? "./default-avatar.jpg";
>} Isn't this over engineered? Why not allow the assignment but do nothing if any of the intermediate objects is null (that's how Kotlin does it). |
|