Var and String differences
I'm begnner to c#. What is the differences between var and string?
Answers (1)
0
Hi,
var is an implicit type and string is an explicit type but these declarations are functionaly equivalent
Reference :
http://stackoverflow.com/questions/16790143/what-is-the-difference-between-var-and-string-in-c
Accepted