C# - Automatic variable declaration
Variable declaration is used for its creation.automatic variable declaration
Description
type name =init_value;
type name =init_value , name = init_value;
Data:
- name -
Input
- type - data types
- init_value - Expressions
Examples
C#
Automatic variable declaration the possible of use:xmin = -128; ymax = 127;
sbyte x= -5; // x = -5
sbyte y = -(15 % 4); // y = -3
y = (sbyte)(x * y); // z = 15
C#
Other pieces of example codes:float x = 3.14159265359;
byte x=5;
bool b = x;
double x = 3.14159265359;
short x= -1234;
int x= -12345;
Automatic variable declaration in another programming language:
Differences to: