Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# variable

//    a ..... var be like
//     string (text) /
string name = "Joe";
//     int (number) /
int age = 12;
//     boolean (true or false) /
bool correct = false;
bool you_are_watching_this = true;
//     float (decimal number)
float d_num = 3.5f //must be a "f" if setting it anywhere else

/* There is ALOT of Variable types
out there but the important ones
are these */
 
PREVIOUS NEXT
Tagged: #variable
ADD COMMENT
Topic
Name
5+8 =