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
1answer
114 views
How often do you create implicit conversions for your classes?
I've been developing .NET applications for 4 years. So far, I did not need to create any implicit conversions for the classes I authored.
Could you provide real-life situations when you could not do ...
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();
}
3
votes
7answers
835 views
What are the benefits of implicit typing in C# 3.0 >+
The only advantage I can see to do:
var s = new ClassA();
over
ClassA s = new ClassA();
Is that later if you decide you want ClassB, you only have to change the RHS of the declaration.
I guess ...
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();
0
votes
4answers
94 views
ReSharper & Implicitly Typed Variables
I am using ReSharper to help me spotting possible errors in my code, and, although not an error, it keeps complaining that I should use the var keyword instead of explicitly typing variables on ...