Tagged Questions
27
votes
8answers
3k views
What to use: var or object name type?
this is a question that when programming I always wonder: What to use when we are writting code:
var myFiles = Directory.GetFiles(fullPath);
or
string[] myFiles = Directory.GetFiles(fullPath);
...