C#
string s; s = (true ? "True" : "False"); //s will be "True"
VB.NET
Dim s As String s = If(True, "True", "False") 's will be "True" 'In the following you cannot rely on a particular function 'not being called if the other argument is selected by Expression '(notice IIf vs. If) s = IIf(True, "True", "False") 's will be "True"
JavaScript
var s = (true) ? 'True' : 'False'; //s will be "True"