using var
When using var the developer doesn't need to specify the variable's type.
That means the compiler will determines the explicit type if the variable, based on the usage.
-Animal c = new Animal();
var c = new Animal();
Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com