C# Learner's Log #1 - 30.01.21
Implicit typing involves using the var keyword where the compiler can intelligently figure out what data type an expression is.
static void Main(string[] args)
{
double[] numbers;
numbers[0] = 12.7 // Error: ...
plantcode.hashnode.dev4 min read