Slide 1

Slide 1 text

Learn C# Programming Operators Eng Teong Cheah Microsoft MVP in Visual Studio & Development Technologies

Slide 2

Slide 2 text

Agenda •Operators

Slide 3

Slide 3 text

C# - Operators

Slide 4

Slide 4 text

C# - Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. C# has rich set of built-in operators and provides the following type of operators: • Arithmetic Operators • Relational Operators • Logical Operators • Bitwise Operators • Assignment Operators • Misc Operators

Slide 5

Slide 5 text

C# - Operators This tutorial explains the arithmetic, relational, logical, bitwise, assignment, and other operators one by one.

Slide 6

Slide 6 text

C# - Operators Arithmetic Operators Following table shows all the arithmetic operators supported by C#. Assume variable A holds 10 and variable B holds 20 then:

Slide 7

Slide 7 text

C# - Operators Arithmetic Operators

Slide 8

Slide 8 text

Demo

Slide 9

Slide 9 text

C# - Operators Relational Operators Following table shows all the relational operators supported by C#. Assume variable A holds 10 and variable B holds 20 then:

Slide 10

Slide 10 text

C# - Operators Relational Operators

Slide 11

Slide 11 text

Demo

Slide 12

Slide 12 text

C# - Operators Logical Operators Following table shows all the logical operators supported by C#. Assume variable A holds Boolean value true and variable B holds Boolean value false:

Slide 13

Slide 13 text

C# - Operators Logical Operators

Slide 14

Slide 14 text

Demo

Slide 15

Slide 15 text

C# - Operators Bitwise Operators Bitwise operator works on bits and perform bit by bit operation. The truth tables for &, | , and ^ are as follows:

Slide 16

Slide 16 text

C# - Operators Bitwise Operators Assume if A = 60; and B=13; then in the binary format they are as follows: A = 0011 1100 B = 0000 1101 --------------------- A&B = 0000 1100 A|B = 0011 1101 A^B = 0011 0001 ~A = 1100 0011

Slide 17

Slide 17 text

C# - Operators Bitwise Operators The Bitwise operators supported by C# are listed in the following table. Assume variable A holds 60 and variable B holds 13, then:

Slide 18

Slide 18 text

C# - Operators Bitwise Operators

Slide 19

Slide 19 text

Demo

Slide 20

Slide 20 text

C# - Operators Assignment Operators There are following assignment operators supported by C#:

Slide 21

Slide 21 text

Demo

Slide 22

Slide 22 text

C# - Operators Miscellaneous Operators There are few other important operators including sizeof , typeof and ? : supported by C#

Slide 23

Slide 23 text

Demo

Slide 24

Slide 24 text

C# - Operators Operators Precedence in C# Operator precedence determines the grouping of terms in an expression. This affects evaluation of an expression. Certain operators have higher precedence than others; for example, the multiplication operator has higher precedence than the addition operator.

Slide 25

Slide 25 text

C# - Operators Operators Precedence in C# For example x = 7 + 3 * 2; here, x is assigned 13, not 20 because operator * has higher precedence than +, so the first evaluation takes place for 3*2 and then 7 is added into it. Here, operators with the highest precedence appear at the top of the table, those with the lowest appear at the bottom. Within an expression, higher precedence operators are evaluated first.

Slide 26

Slide 26 text

C# - Operators Operators Precedence in C#

Slide 27

Slide 27 text

Demo

Slide 28

Slide 28 text

Related Content •TutorialsPoint www.tutorialspoint.com

Slide 29

Slide 29 text

Thank You