and that only works since C#7. before that you had...
# language-proposals
k
and that only works since C#7. before that you had to write
Copy code
TResult value;
return map.TryGet(key, out value) ? value : null