Welcome To Shadab's Blog

Programming Blog to learn C# , java, Sql Server 2005 and many more things.





About Me

My photo
Bokaro, Jharkhand, India

Saturday, January 16, 2010

DATA TYPES IN C#

DATA TYPES IN C# :
                       First of all we have to understand that what is a data type ?
Data types specifies that which type of value will be contained by a
variable either integer or character or etc.
some data types is given below.

  1. int
  2. string
  3. char
  4. bool
  5. float
  6. double
  7. byte
  8. long
  9. short
and etc.
in next blog i'll discuss how to accept and display the different data types in screen

Step By Step C# program

Today I am going to write a Blog in which I will writer how to learn C# programming.


I will give you simple and easy way idea by which you can easily write a program.



Here you can ask any question in C#.



Now I am going to write step by step C# ’s program.





using System;

class First

{

public static void Main()

{

Conosle.WriteLine("Welcome to C# programming");

}

}