h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

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:

Post a Comment