Monday, June 23, 2025 19:06

Posts Tagged ‘var variable’

Var keyword

Thursday, December 29th, 2016

In the previous lessons, I’ve said that when declaring a variable, we are required to indicate the compiler the type of the variable and its name. These kind of variables are called explicitly typed variables:

int integerVariable = 123; // explicitly typed variable

However, this is not entirely true.… Read more