The implicit-typing tag has no wiki summary.
2
votes
2answers
96 views
Implicitly-Typed Out Parameters
In a similar vein to this question, I decided to see if it was possible to pull out parameters from a method into implicitly-typed variables without having to define the types. My ideal solution ...
5
votes
3answers
156 views
Implicitly-Typed Variables in try…catch
I like using implicit typing for almost everything because it's clean and simple. However, when I need to wrap a try...catch block around a single statement, I have to break the implicit typing in ...
1
vote
1answer
72 views
Implicitly using Ordered
I am trying to create a wrapper for certain Types used in my program. I also want all of these types to have a compare Method by implementing the trait Ordered[T]. I am having a problem making a ...
16
votes
4answers
365 views
Use of C# var for implicit typing of System.Data.Datarow
foreach (var row in table.Rows)
{
DoSomethingWith(row);
}
Assuming that I'm working with a standard System.Data.DataTable (which has a collection of System.Data.DataRow objects), the variable ...
0
votes
5answers
147 views
Why should I use implicit types (var) when it is possible? [duplicate]
Possible Duplicate:
Advantage of var keyword in C# 3.0
yesterday I stumbled upon a recomendation from MS, that I should use var, when ever possible:
...
4
votes
2answers
120 views
VS2010 shows implicit variable to be of type 'var' instead of the actual type
I'm not sure if this is a bug or something else.
I create a new Web Application project in VS2010. In the project, I create a new class (Class1), with the following contents:
public void Test()
{
...
2
votes
2answers
141 views
Can anonymous types be used in text templates?
I am writing a text template and have the following line of code:
Tuple<string, int, bool>[] tupleArray = new[]
{
new Tuple<string, int, bool>("apple", 4, true),
new ...
1
vote
6answers
2k 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
{
...
6
votes
3answers
704 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", ...
4
votes
4answers
134 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
486 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 ...
2
votes
1answer
214 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 = ...
7
votes
3answers
187 views
Using implicit typing [duplicate]
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 ...
0
votes
5answers
84 views
Implicity typed class member [duplicate]
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
4k 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 ...
1
vote
1answer
104 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 = ...
41
votes
5answers
4k views
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) {
...
31
votes
5answers
4k 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;
...
0
votes
1answer
252 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 ...
2
votes
3answers
128 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
4answers
299 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();
4
votes
2answers
323 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 ...
8
votes
13answers
875 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)
{
...
2
votes
4answers
3k views
cannot assign <null> to implicit types local variable using asp.net
I have this
var result = general.GetInformation(int.Parse(ID), F_account, F_Info, Types);
this GetInformation is my Entity.Getinformation class.. when I am trying to assign result globly I am ...
5
votes
2answers
1k 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 ...
9
votes
1answer
293 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
131 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 ...
0
votes
2answers
105 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 ...
5
votes
3answers
191 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 ...
1
vote
5answers
828 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
738 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 ...
6
votes
2answers
208 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...
3
votes
5answers
554 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 ...
5
votes
7answers
2k 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 ...
0
votes
4answers
182 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 ...
9
votes
6answers
508 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
1answer
710 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, ...
33
votes
5answers
15k views
Using implicitly typed local variables [duplicate]
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 ...
20
votes
17answers
4k 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 ...