As I am not familiar with implicit typing; can you please tell me the main differences between:
var foo = new Love();
AND
object foo = new Love();
|
As I am not familiar with implicit typing; can you please tell me the main differences between:
AND
| |||
|
feedback
|
|
In the first case the type of | |||||||||||||
feedback
|
Here, the static type of variable
Here, the static type of variable The dynamic type (or runtime type) of | |||
|
feedback
|
|
With In other words,
is exactly equivalent to
So all the members of With
In these cases the compiler doesn't have enough information to work out which type you mean. | |||
|
feedback
|
here it equals to
sometimes we can use
Now foo is considered to be an object, you can't see any method/property of class Love, but you can convert it back. | |||
|
feedback
|