Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to use variables in c#

// All types of variables
int MyNumber = 2; // A number
float MyDotNumber = 2.2; // A Number with decimals
string MyText = ("Hello World") //Text
bool YesOrNo = true; //True or False

// Formats

(Type) (Name) = (Value);
E.g:
int NameOfVariable = (Value depending on type)
 
PREVIOUS NEXT
Tagged: #variables
ADD COMMENT
Topic
Name
8+5 =