In Perl (and other languages) a conditional ternary operator can be expressed like this:
my $foo = $bar = $buz ? $cat : $dog;
Is there a similar operator in VB.NET?
Thanks to Lucky and Kris, I now know that in VB.NET this operation is expressed like this:
Dim foo as String = IF(bar = buz, cat, dog)