G
Guest
I would like to know the sequence of calls required to create a conditional
expression like:
if(a != null)
{
}
So far I have only come up with
if(a)
{
}
Which will work but I would like to know how to form expressions with '!=',
'==', '>', etc.
Thank you for your help.
Kevin Burton
expression like:
if(a != null)
{
}
So far I have only come up with
if(a)
{
}
Which will work but I would like to know how to form expressions with '!=',
'==', '>', etc.
Thank you for your help.
Kevin Burton