Powered by Blogger.

Saturday, March 1, 2014

Special Operators and Statement in C#.Net



In this post we will discuss some speacial operators and statements in C#.Net.

Also check out:

- Working with enterprise library for data access in asp.net Part-2

- How to open hyperlink in new tab using jQuery or JavaScript?

- How to download file in C#.Net?

C# supports following Eight Special Operators.
is                        :          relational operator
as                       :          relational operator
typeof                 :          type operator
sizeof                  :          size operator
new                    :          object creator
.(dot)                  :          member access operator
checked              :          overflow checking
unchecked           :          prevention of overflow checking

Statements in C#.net

C# supports different types of Statements.They are as follows :
Block Statements
Declaration Statements
Expression Statements
Selection Statements
Iteration Statements
Jump Statements
Try catch Statements
Checked and unchecked Statements
Lock Statements