I'm trying to do something like the following
<div id="test">
@(
string.IsNullOrEmpty(myString)
? @:
: myString
)
</div>
The above syntax is invalid, I've tried a bunch of different things but can't get it working.