Поделиться через


C# Soup To Nuts: Operator Basics

Well, welcome back to my C# Soup To Nuts webcast series.  In Today's installment, we'll be talking about Operator Basics.  We're going to cover the very basics of what an operator is... and we'll look at how to use several different ones.

We will then dig a little deeper and learn about overloading operators.  So, if you don't know yet what that means, then I guess you'll just have to watch my webcast. ;-)

See you there!

Bill

(PS - as always, my demo code is attached.)

Session8-OperatorBasics.zip

Comments

  • Anonymous
    January 30, 2007
    Bill, On one of the slides, you mentioned that the bitwise operators return a bool data type.  This is incorrect - they return a numeric data type. Tim Phelps Canal Fulton, OH

  • Anonymous
    January 30, 2007
    Bill, Also, in your demo, you mix logical and bitwise operators and call them all logical operators.  & and | are bitwise AND and bitwise OR.  && and || are logical AND and logical OR. Tim Phelps Canal Fulton, OH