Compiler-Generated Constructor
Get introduced to the compiler-generated automatic constructor and the use of this keyword.
We'll cover the following...
Compiler-generated constructor
All of the structs that we have seen so far take advantage of a constructor that has been generated automatically by the compiler. The automatic constructor assigns the parameter values to the members in the order that they are specified.
As you will remember from the ...