Tagged Questions
The implicit-typing tag has no wiki summary.
21
votes
5answers
981 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
919 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
783 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
134 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
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();
}
6
votes
4answers
244 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
386 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
2answers
195 views
Scala: convert a return type into a custom trait
I've written a custom trait which extends Iterator[A] and I'd like to be able to use the methods I've written on an Iterator[A] which is returned from another method. Is this possible?
trait ...
3
votes
5answers
512 views
Will “long i = 1;” cause an implicit type conversion in C?
If I write "long i = 1;" instead of "long i = 1l;", will the 1 be recognized as int and then implicitly converted to long?
Edit: Thank you all. I see there's no type conversion. Is this also the case ...
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
107 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
138 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
1answer
94 views
Adding Overloaded Constructor That Requires Initialization Code to Implicit F# Type
I currently have the following code:
type Matrix(sourceMatrix:double[,]) =
let rows = sourceMatrix.GetUpperBound(0) + 1
let cols = sourceMatrix.GetUpperBound(1) + 1
let matrix = ...
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 ...
1
vote
3answers
328 views
Implicit type conversions in expressions int to double
I've been trying to reduce implicit type conversions when I use named constants in my code. For example rather than using
const double foo = 5;
I would use
const double foo = 5.0;
so that a type ...
1
vote
1answer
516 views
How should I pass a user-defined type to SqlParameterCollection.AddWithValue?
I have a custom data type called StudentID, which has an implicit conversion to string.
When I pass a StudentID instance to SqlCommand.Parameters.AddWithValue (as the value) and execute the command, ...
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 ...
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
437 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
2answers
82 views
Configuring implicit typing rules for Oracle
Is it possible to configure the implicit typing rule in Oracle Server (at least version 10g) ?
If not a link to the documentation of the rules and how Oracle parameters impact the rules would be ...
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 ...