Tagged Questions

21
votes
5answers
990 views

C# Why can't an anonymous method be assigned to var?

I have the following code: Func<string, bool> comparer = delegate(string value) { return value != "0"; }; However, the following does not compile: var comparer = delegate(string value) { ...
20
votes
5answers
922 views

Why doesn't C# let you declare multiple variables using var?

Given the following: // not a problem int i = 2, j = 3; so it surprises me that this: // compiler error: Implicitly-typed local variables cannot have multiple declarators var i = 2, j = 3; ...
15
votes
14answers
2k views

Why would var be a bad thing?

I've been chatting with my colleagues the other day and heard that their coding standard explicitly forbids them to use the var keyword in C#. They had no idea why it was so and I've always found ...
14
votes
5answers
6k views

Using implicitly typed local variables [closed]

I just installed a trial version of ReSharper and one of the first things I noticed is that it always suggests to replace explicitly typed local variables with implicitly typed ones, e.g: public ...
8
votes
13answers
787 views

How does implicit typing make code clearer?

In a book I'm reading it states the implicit typing makes the following code clearer than if you didn't use the var keyword: var words = new[] { "a", "b", null, "d" }; foreach (var item in words) { ...
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
3answers
135 views

Using implicit typing [closed]

Possible Duplicate: Resharper: vars Is there a reason that resharper suggests var thing1 = 5 as opposed to int thing1 = 5? It just seems that they mean the exact same thing except that var ...
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(); }
6
votes
4answers
245 views

Why can't I use the array initializer with an implicitly typed variable?

Why can't I use the array initializer with an implicitly typed variable? string[] words = { "apple", "strawberry", "grape" }; // legal string[] words = new string[]{ "apple", ...
6
votes
2answers
168 views

Why can't I do this with implicit types in C#?

var x = new { a = "foobar", b = 42 }; List<x.GetType()> y; Is there a different way to do what I want to do here? If there's not, I don't really see all that much point in implicit types...
5
votes
3answers
157 views

Implicit typing and TDD

I just read this post and it makes the case against implicit typing using when starting out with Test driven development/design. His post says that TDD can be "slowed down" when using implicit typing ...
4
votes
2answers
389 views

Implicit typing of arrays that implement interfaces

I was under the impression that the C# compiler will implicitly type an array based off a type that they can all be implicitly converted to. The compiler generates No best type found for ...
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 ...
2
votes
1answer
108 views

Implicit type comparison with explicit type - C#

I've got an interesting issue with type comparison. I'm attempting to compare an implied type with an explicit type, to test if something is any sort of collection var obField = ...
2
votes
3answers
116 views

C# Compiler feature or am I loosing my mind?

After rewriting my event invocation function to handle the events and their arguments generically, I started going over my code (to match the change), and I noticed that the compiler implicitly made ...
1
vote
5answers
141 views

Declaring an implicitly typed variable inside conditional scope and using it outside

In the simplified code below, if(city == "New York City") { var MyObject = from x in MyEFTable where x.CostOfLiving == "VERY HIGH" select x.*; } else { ...
1
vote
4answers
96 views

Why does a number declared as an implicit type default to integer in C#?

Example 1 var test = Byte.MaxValue; Console.WriteLine(test + " : " + test.GetType().Name); Result 255 : Byte Example 2 var test = 255; Console.WriteLine(test + " : " + test.GetType().Name); ...
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();
1
vote
5answers
535 views

Are implicitly-typed variables the way forward (C#)

I am using StyleCop for Resharper on a project originally written for .net v2. But I've since upgraded this project for 3.5 framework. Stylecop is recommending I change the bulk of my explicitly ...
0
votes
5answers
53 views

Implicity typed class member [closed]

Possible Duplicate: Using var outside of a method I've searched for this a bit, but am not too sure of the search terms so didn't find anything. Why can't i do this: class foo { var ...
0
votes
4answers
443 views

Initialize implicitly typed local variable to IList

I understand that implicitly-typed local variables must be initialized. I know that result will be an IList so could I somehow say that var result will be an IList? var result; //initialize to ...
0
votes
1answer
116 views

Implicitly typed array of triplets

I have a unit test method: private bool TestCompatibility(string type1, string type2, bool shouldBeCompatible) { } As it "knows" which types are (designed) compatible, it makes a call to the unit ...
0
votes
4answers
161 views

Class implicit conversions

I know that I can use implicit conversions with a class as follows but is there any way that I can get a instance to return a string without a cast or conversion? public class Fred { public ...