? - + ! @ # % ^ & * ( ) [ ] { } . ; : " ' / \
.
However, an underscore _
)my_Car
, thisYear
, and long_Name_Can_beUSE
my.Car
, 1newBoy
, and he&HisFather
<data_type> <variable_list>;
Here, data_type must be a valid C# data type including char , int , float , double , or any user-defined data type, and variable_list may consist of one or more identifier names separated by commas:
|
|
variable_name = value;Variables can be initialized in their declaration: <data_type> <name> = value; |
|