Variables

I l @ ve RuBoard

Variables

Variables are storage locations and in C# must have a specific type. When declared within method, property, or indexer declarations, variables are said to be local. Variables are declared in the following way:

  type variablename;  

To create an integer variable, we would write the following:

  int x; 

Variables must be assigned a value before they can be used, and we can both declare and assign a value to a variable in one step:

 int x = 1; 
I l @ ve RuBoard


Asp. Net. By Example
ASP.NET by Example
ISBN: 0789725622
EAN: 2147483647
Year: 2001
Pages: 154

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net