Tagged Questions

6
votes
2answers
113 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 i …
2
votes
5answers
269 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. I …
3
votes
7answers
160 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 de …
0
votes
4answers
111 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 Fre …
6
votes
5answers
272 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(); }
0
votes
1answer
126 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 e …
2
votes
5answers
334 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 one …
9
votes
14answers
625 views

Why would var be a bad thing?

I've been chatting with my collegues 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'v …