Tagged Questions
8
votes
1answer
229 views
var in C# - Why can't it be used as a member variable?
Why is it not possible to have implicitly-typed variables at a class level within C# for when these variables are immediately assigned?
ie:
public class TheClass
{
private var aList = new ...
7
votes
6answers
430 views
Implicit typing; why just local variables?
Does anyone know or care to speculate why implicit typing is limited to local variables?
var thingy = new Foo();
But why not...
var getFoo() {
return new Foo();
}
1
vote
4answers
264 views
What is the difference 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:
var foo = new Love();
AND
object foo = new Love();