You can use an inline conditional statement (or, ternary operator), like so:
var e = get(y) != null ? get(y).Title : null;
However, you might want to take the 'primitive' route (I know, I know, one-liners are all the rage), if for nothing else but to minimise the calls to get
(which you do state as a concern), which would simply be:
string e = null;
var somethingOrOther = get(y);
if (somethingOrOther != null) {
e = somethingOrOther;
}
To my knowledge, I'm afraid it's one or the other - someone else might know something I don't, or Jon Skeet might concoct some evil for you, but this is where I stand (anything else would seem only to be variations of the same approaches).
Furthermore, since now being aware of a possible duplicate, but for completeness, I'll quote Eric Lippert's on "null if object is null, or object.member if object is not null":
There's no short form for that; implementing one is a fairly
frequently requested feature.