13 August 2012

Types of VB.net Statement:

Here, I give a Tye pf VB.Net Statement with explanation.  Three types of Statement in VB.Net.
  1.  Declaration Statements
  2.  Executable Statements
  3.  Assignment Statements
1) Declaration Statements:
    names of variables,Procedures,Properties ,arrays and constants.
Eg: Dim myName As New string ("Lakshmi Narayanan")
2) Executable Statements:
    Perform a specific action.
    call a procedure
     loop through several statements, or evaluate an expression.
3)Assignment Statements:
    Assignment Statements is also a type of Executable statement.
Me.Text = “Beginner Guide”

No comments: