This page contains general information about the use of variables in C#


Variables

Variables in coding are essentially just a placeholder for any given date. In daily context it can be seen as a bucket in which you pour data into.

The data could be anything. Eg you name, favorit color or you home address. Anything can go here

The data can then be called from somewhere else in your code

Remember to always name your variables something that relates to its function. This way its easier to know what this variable is later on when you at some point look back on previous projects or code

//example of a variable. 
//The variable is called "a" and the value of the variable "a" is 16
a = 16;

Bool

Bool in C# is the same as Boolean in Java. This is a true/false value

Artematik

Artemetik referres to the use of math in code. Basic mathematical formular and calculation can be performed here. Mainly Addition, Subtraction, Multiplication and division

If you want to calculate something using various data and or variables. Aim to use int as those functions are meant to store numbers which are used in mathematical expressions.

If you wish to simply use numbers in context with something like general information eg. phone number a string will suffice

Operators (Tildeling / assignment)

Operator Explanation
+= Adds the value of a variable by a value
-= Subtracts the value of a variable by a value
*= Multiplies the value of a variable by a value
/= Divides the value of a variable by a value
++ Increases variable by 1
- - Decreases variable by 1

Data Types