+ 1
How to create veriables....?
9 Answers
0
Hi Vickie. Do you have knowledge about any other programming language? Or you are totally new?
0
I'm like totally new. you can say....!
0
If you are talking about naming a variable...
a variable should start with a letter (Capital or Small in C#) or underscore (_).
0
Do you know about data types?
0
I want this applicationstate ();
0
Hey can tell your problem with more detail.
0
leave it. I want to beginning again from 0. (
0
Good. Keep Learning.
0
you need to define the variable data type: (int, string, float)
then you need to give the variable a name.
then you need to close the statement.
for example:
int myAge = 8;
int (data type)
myAge (variable name)
= (assign the variable)
8 (the variable value)
; (close the statement)