C# create variable code example

Example 1: 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)

Example 2: c# write variable in string

int age = 22;

Console.WriteLine($"Age: {age}");

Example 3: how to create a variable in C#

int variable;

Example 4: how to declare variables in c#

public int yourNumber = 5;