55
votes
3answers
4k views
What are the correct version numbers for C#?
What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5?
[This question is primarily to aid those who are searching for an answer using an incorrect …
47
votes
20answers
2k views
Am I getting left behind by not using the new features of the .NET framework (.NET 3.0 & 3.5)?
Where I work I see a lot of otherwise very talented C++ developers produce ugly C# code, purely because they are not as familiar with the .NET framework and the features of C#.
Now I only started …
28
votes
4answers
1k views
How does the C# compiler detect COM types?
EDIT: I've written the results up as a blog post.
The C# compiler treats COM types somewhat magically. For instance, this statement looks normal...
Word.Application app = new Word.Application();
…
21
votes
20answers
2k views
What do you think of the new C# 4.0 ‘dynamic’ keyword?
Hi all,
I've just seen an article detailing the new C#4.0 'dynamic' feature previewed at the PDC 2008 and I wondered what people thought of it ? I'm wondering:
what are good examples of the benefit …
12
votes
6answers
1k views
Does the new ‘dynamic’ C# 4.0 keyword deprecate the ‘var’ keyword ?
When C# 4.0 comes out and we have the dynamic keyword as described in this excellent presentation by Anders Hejlsberg, (C# is evolving faster than I can keep up.. I didn't have much time to acquaint …
10
votes
4answers
273 views
How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
I'm trying to give a short example of IDynamicMetaObjectProvider for the second edition of C# in Depth, and I'm running into issues.
I want to be able to express a void call, and I'm failing. I'm …
10
votes
1answer
178 views
Is PIA embedding broken in .NET 4.0 beta 2?
A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to Microsoft.Office.Interop.Word to be embedded (set the "Embed Interop Types" = true in the reference …
10
votes
3answers
233 views
How is the upcoming ‘dynamic’ keyword in .net 4.0 going to make my life better?
I don't quite get what it's going to let me do (or get away with :)
10
votes
5answers
716 views
Why do we need new keywords for Covariance and Contravariance in C#?
Can someone explain why there is the need to add an out or in parameter to indicate that a generic type is Co or Contra variant in C# 4.0?
I've been trying to understand why this is important and why …
9
votes
6answers
294 views
Difference between CLR 2.0 and CLR 4.0
I have read countless blogs, posts and StackOverflow questions about the new features of C# 4.0. Even new WPF 4.0 features have started to come out in the open. What I could not find and will like to …
8
votes
2answers
360 views
Event and delegate contravariance in .NET 4.0 and C# 4.0
While investigating this question I got curious about how the new covariance/contravariance features in C# 4.0 will affect it.
In Beta 1, C# seems to disagree with the CLR. Back in C# 3.0, if you …
7
votes
5answers
349 views
How will you use the C# 4 dynamic type ?
C# 4 will contain a new dynamic keyword that will bring dynamic language features into C#.
How do you plan to use it in your own code, what pattern would you propose ? In which part of your current …
7
votes
3answers
396 views
Anders Hejlsberg’s C# 4.0 REPL
During the last 10 minutes of Ander's talk The Future of C# he demonstrates a really cool C# Read-Eval-Print loop which would be a tremendous help in learning the language.
Several .NET4 related …
6
votes
3answers
623 views
What’s the best source of information on the DLR (.NET 4.0 beta 1)?
I'm currently researching the 2nd edition of C# in Depth, and trying to implement "dynamic protocol buffers" - i.e. a level of dynamic support on top of my existing protocol buffer library. As such, I …
6
votes
3answers
286 views
Will the dynamic keyword in C#4 support extension methods?
I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods?
public static class …
