Chris
Mon Aug 23 10:33:50 CDT 2004
Beginning C# from Wrox Press is a great start.
-Chris
"Peter" <pvdacker@nospam_home.nl> wrote in message
news:%23fH$vNRiEHA.592@TK2MSFTNGP11.phx.gbl...
> Many thanks Jon,
>
> Can you also tell me what the operator is for "OR" ?
>
> Regards,
>
> Peter.
>
>
>
>
>
> "Jon Skeet [C# MVP]" <skeet@pobox.com> schreef in bericht
> news:MPG.1b93e957fde8345198b264@msnews.microsoft.com...
> > Peter <pvdacker@nospam_home.nl> wrote:
> > > Maybe simple Questions but I try to learn C# for Compact framework.
> >
> > I would *strongly* recommend that you learn the basics of C# and .NET
> > on the desktop first. It's a much friendly development environment - no
> > need for emulators or deploying to devices etc.
> >
> > > Can somebody explain to me what is :
> > > 1) difference between = = and ! =
> >
> > Firstly, with the spaces in they're invalid.
> >
> > == is the equality operator
> > != is the inequality operator
> >
> > > 2) the && stands for ?
> >
> > Logical "and"
> >
> > > like in
> > > if (font == null && parent != null)
> >
> > That says "If the value of the font variable is null and the value of
> > the parent variable isn't null".
> >
> > --
> > Jon Skeet - <skeet@pobox.com>
> >
http://www.pobox.com/~skeet
> > If replying to the group, please do not mail me too
>
>