The if Statement in .net

by admin on February 4, 2010

If statment is very useful in decision making.  We will examine different ways of using if statment in VB and  C# (Visual basic and C Sharp).

The simplest use of an if statement is as follows:

if  (<condition>)
      <code executed if <test> is true>:

In this the code is executed when the test condition is true.

Additional code can be executed if the condition fails by adding else statement.

 else <code executed if <test> is false>;

Here is some example of testing some conditions.

if (checkbox1.Checked ==true)

if  (label1.BackColor == Color.Black)

if (numTiers == 4)

Leave a Comment

Previous post:

Next post: