Click here to Skip to main content
Click here to Skip to main content

Introduction to C# 3

By , 13 Sep 2005
 

Introduction

Just look at the C# 3 future, it's so pretty I want it now. Check out the videos that they have there. There is so much good stuff there, and it's only the start.  First of all, read the C# 3.0 spec [doc file], or just read the rest of the post to see the highlights.

Type Inferencing and Implicitly Typed Arrays

I got addicted to that when using Boo, it's something so simple, but it saves so much. In most cases, it means no more casting hell. Andres let it slip in a presentation about a year ago, in essence, it means:

var sum = 0;
var intArray = new [] { 1,2,3,4};
foreach ( var i in intArray )
{
    sum += i;
}

This is a very cool idea, especially since you can use it for the foreach construct, which should make for far better code. Did you notice how I declared the array? new [], without a type, the compiler just fixed it up automatically.

Extensions Methods

This is a feature that lets you add new instance methods to a class, without touching the class code and even if the class is already compiled. The idea opens up so many possibilities that it's just staggering. Fowler talked about it in Refactoring. Other languages, such as SmallTalk and Ruby already have it (SmallTalk has it for 30 years, I think), and it has proved to be a useful feature. You could add methods to System.Object, which would then be "inherited" by any object. Consider adding ToXmlString() for all objects, for instance. Or persistence to database. And no, it's not just syntactic sugar, those things are important. This mean that you're no longer at the mercy of the class designer. It's a truly powerful tool. The nicest thing about it, I think, is that it'll work with generics, so you get a host of goodness for very little effort. Here is the example from the spec:

public static class Sequence{
            public static IEnumerable<S> Select<T,S>(
                        this IEnumerable<T> source, Func<T,S> selector)
            {
                        foreach (T element in source) yield return selector(element);
            }
            public static IEnumerable Select<T,S>(
                        this IEnumerable source, Func<T,S> selector)
            {
                        foreach (T element in source) yield return selector(element);
            }
} 

What does the above say? Well, it means that you can now use Select() on any object that implements IEnumerable. You could even use them on your 1.0 and 1.1 collections! Can you say goodness? This is cool on so many levels that it's not even funny.

Here is another nice thing that you can do:

public static class ExtermalObjectMethods
{
    public static bool IsNull(this object obj)
    {
         return obj == null;
    }
}
object nullObj = null;
if (nullObj.IsNull() )
   Console.WriteLine("Object is null");

Just how cool is that?

Extension properties, events and operators are currently considered, but not yet supported. I certainly hope that Microsoft will implement those, as they would allow a much nicer syntax for a lot of things (an IsNull property, for a start). Adding operators to interfaces is another big problem that this can solve.

Lambda Expressions

This is like anonymous methods, only with an even easier syntax. This is something that I don't think most .NET developers will appreciate now, but they certainly would two years from now, when the functional goodness will be fully entranced. Here is how you would extract all the names from a list of customers:

string[] names = GetListOfCustomers().Select( c => c.Name );

Can you see the beauty of it? The "c => c.Name" is the lambda expression, which is just a way to tell the compiler to do the dirty work, instead of having to do it ourselves using anonymous delegates. If it was all that they were good for, they wouldn't amount to much, but they have quite a few other usages, as you'll see shortly.

Object and Collection Initializers

This is something that we had for quite some time in attributes, which is now coming to both object initialization and collections initialization. The idea is actually very simple, consider the class Person:

var ayende = new Person{Name = "Ayende", Surname = "Rahien"};
var persons = new List<Person> { 
    new Person{Name = "Ayende", Surname = "Rahien"}, 
    new Person{Name = "Foo", Surname = "Bar"}
} 

Just consider the shear amount of code that you would've to write in order to do the same today (or even in 2.0).

Anonymous Types

No, it's not Java's anonymous classes, but it's a nice enough feature. It means that you can declare a type by just using it.

var ayende = new {Name = "ayende", WebSite = http://www.ayende.com/};
Console.WriteLine(ayende.WebSite);

This would create a new type with Name and WebSite properties. While this may save some typing in certain cases, I'm not certain that this is a useful feature. You cannot use it outside of a method's boundary, since it has no type that you can access.

This is nice, but I don't like the way it's implemented now. Boo has something similar, but since Boo has type inferencing throughout the language there it actually makes sense, since it allows to return a strongly typed object from a  method, instead of an object array. Here is the Boo example:

def MethodThatReturnSeveralArgs():
    return tuple { Int: 1, Name: "Ayende", Null: null, TimeStamp: DateTime.Now}

print MethodThatReturnSeveralArgs().Name 

Since declaring variables using the var syntax is limited to local variables, I think this is unnecessarily limited.

Query Expressions

I expect this to be the big thing for C# 3, just as generics are the big thing for C# 2. The idea is to allow an SQL like syntax for selecting objects from a database/memory/XML directly into the language. The idea is quite involved, and I'm sure it will generate a lot of discussion. The idea is to be able to do the following:

var payingCustomers = from c in db.Customers
where c.Orders.Count > 0 
select new { Email = c.Email, Name = c.Name };
foreach (var c in payingCustomers)
{
   SendDiscountOffer(c.Email, c.Name);
}

There are all sorts of ways where you can plug into this statement and do all sorts of cool things with it. db.Customers may be an in memory class, or it can redirect the query to database, to remote machine, etc. This is also apparently the use case for anonymous types, as return types from lambda expressions. It's nice, but it's not enough. It should be expanded to regular methods as well, in my opinion. I suggest checking the spec anyway, I'm just touching the edge here, and I'm sure that there are a lot of cool implementations that I'm missing here.

Expression Trees

They are a way to turn lambda expressions into data. The idea is to be able to do this:

var valuedCustomers = session.Select(x => x.IsValued==true); 

What is this? Well, what happened here is that we saved the lambda expression "x => x.IsValued==true" and passed it to a persistence layer, which would parse the expression, and load from the database all the rows for which the expression is true.

The important thing here is that the Select method is not using a opaque string, but code that can be type checked and verified by the compiler. Presumably refactoring tools for C# 3 will also support this, so it will make life even easier.

For the author of the Select() method, life would be much easier as well. He won't have to parse strings, but rather deal with an AST tree. From experience, I know that dealing with ASTs is not the easiest thing in the world, but it's certainly much better than dealing with strings.

Summary

All in all, I really like the direction that C# 3 is heading for. Functional programming is not appropriate all the time, but it can save quite a bit of typing and a lot of awkward syntax. I'm very excited about the new abilities, and I think that they will present a quantum leap much bigger than 1.1 -> 2.0. Considering that those are just the language enhancements, I can hardly grasp the amount of goodness we will get in the class library and the associated tools.

I expect quite a lot of noise about query expressions (yes, they are cool). And a lot of activity in the area of lambda expressions as data, since it's a cool way to express much more than just ORM syntax.

The future is bright indeed.

History

  • 13th September, 2005: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ayende @ Rahien
Israel Israel
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMore readable ???memberHumanOsc1 Sep '06 - 5:58 
What by the heck is that... A hybrid of javascript, sql and c... No it's c#3...   This extensions isn't more readable... Maybe, It's only an improvement for the author of a code snippet which is to lazy to write a type name or to explicity declare a class...   I can't imagine...
AnswerRe: More readable ???memberWillemM3 Jun '07 - 7:01 
Atually var is needed for the LINQ query operators. It's pretty unreadable to work with explicitly typed variables in the case where the LINQ queries get more complex. Also if you change one thing in the query, you most probably need a small change to the type declaration for the variable that...
AnswerRe: More readable ???memberzvkeber@yahoo.com22 Aug '07 - 7:51 
I completely agree.   First of all, type inference shouln't be needed since .NET 2.0 introduced generics. The idea of avoiding usage of system.object was a revolution, and using type parameters is simple and clear. How does a "var" make the code easier to maintain than "MyClass"? Why...
AnswerRe: More readable ???mentorKeith Barrow5 Sep '12 - 10:08 
HumanOsc wrote:What by the heck is that... A hybrid of javascript, sql and c Turns out, it was the future. Hindsight is 20/20! Sort of a cross between Lawrence of Arabia and Dilbert.[^] -Or- A Dead ringer for Kate Winslett[^]
Questionnull.IsNull?memberNcTrun10 Jul '06 - 8:20 
Can you really write a IsNull method which says "return this == null;"? I mean, once you have object o = null;, wouldn't o.whatever() throw a System.NullReferenceException?
AnswerRe: null.IsNull?memberAyende @ Rahien10 Jul '06 - 10:41 
No, it won't throw, because that is a compiler magic, and not a method call.
AnswerRe: null.IsNull?memberJudah Himango21 Jul '06 - 5:09 
To further what Ayende said, the compiler is actually generating the following code for you:   if(ExternalObjectMethods.IsNull(obj)) { Console.WriteLine("it's null"); }   Extension methods are, AFAIK, syntax candy, allowing one to extend a type.   Tech, life, family,...
GeneralRe: null.IsNull?memberNcTrun21 Jul '06 - 7:20 
oh, I hadn't tought about that! Thank you!  
GeneralRe: null.IsNull?memberD_Guidi22 Mar '07 - 5:06 
So cool
GeneralExpression TreesmemberVladD315 Sep '05 - 8:18 
How convert the Expression Trees to delegate object? Or how generate MSIL from Expression Trees?
GeneralRe: Expression TreessussAnonymous15 Sep '05 - 8:29 
You don't, expression trees are a way to express intention as code. They are not meant to be a delegate.
GeneralRe: Expression TreesmemberVladD315 Sep '05 - 11:53 
Really no way to make IL by expression trees?
QuestionLambda expressionsmemberdan neely14 Sep '05 - 7:22 
I've never done anything with a functional langauge before, and looking at the code samples I don't have any idea what they're supposed to be doing.
AnswerRe: Lambda expressionsmemberKeith Farmer14 Sep '05 - 7:35 
Lambdas can be stored in variables and passed around. They're very much like anonymous delegates.   However, as I recall, lambdas can be manipulated.   Best to check with a LISP fan for the history and theory. I note that one thing that hasn't received much press yet are...
AnswerRe: Lambda expressionsmemberAyende @ Rahien14 Sep '05 - 8:30 
Lambda has two purposes: * a leaner syntax for anonymous delegates * a way to specify data in code.   In practice, you probably won't have to worry about the difference since it will look and behave the same to you. But the idea is that you can do:   from customer in...
GeneralRe: Lambda expressionsmemberdan neely14 Sep '05 - 10:01 
MY issue is that when I look at the code examples I've no idea what they're supposed to do.
GeneralRe: Lambda expressionsmemberJudah Himango1 Sep '06 - 5:16 
dan neely wrote:MY issue is that when I look at the code examples I've no idea what they're supposed to do. Take the following C# 3 code from Ayende's article:   string[] names = GetListOfCustomers().Select( c => c.Name );   The interesting part here is the c => c.Name...
GeneralType InferencememberGary Thom14 Sep '05 - 3:01 
Personally this   var sum = 0;   makes me shudder. It reminds me too much of VB, it must be my C++ background, but I think stronger typing is better than looser typing.   Gary   Marc Clifton: "In other words, VB is like a bad parent. It can really screw up your...
GeneralRe: Type InferencememberDaniel Grunwald14 Sep '05 - 3:31 
Don't confuse strong/weak typing with static/dynamic typing.   In VB, "Dim a" is the same as "Dim a As Variant". That's dynamic typing (and VB is weakly-typed, too).   But type inference is different: The type is still known at compile-time, you just don't have to write it. Type...
GeneralRe: Type InferencememberGary Thom14 Sep '05 - 4:10 
I understand, however int a = 3; is much easier and less confusing to read. I can however see its usefulness in conjunction with writing templates (generics) etc.   Gary   Marc Clifton: "In other words, VB is like a bad parent. It can really screw up your childhood."
GeneralRe: Type InferencememberAnders Dalvander14 Sep '05 - 4:57 
Which is easier to read: System.Web.Services.Protocols.SoapHeader a = new System.Web.Services.Protocols.SoapHeader(); or var a = new System.Web.Services.Protocols.SoapHeader();   I would prefer the second one. Now if they only could eradicate the new keyword: var a =...
GeneralRe: Type InferencememberGary Thom14 Sep '05 - 6:04 
Actually neither.   I much prefer:   using System.Web.Services.Protocols;   . . SoapHeader a = new SoapHeader(); . .   Gary   Marc Clifton: "In other words, VB is like a bad parent. It can really screw up your childhood."
GeneralRe: Type InferencememberAnders Dalvander14 Sep '05 - 6:44 
I knew you would misread my post, thank you for doing so.   InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood a = new InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood(); - or - var a = new InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood(); - or...
GeneralRe: Type InferencememberGary Thom14 Sep '05 - 6:52 
  Point taken, though I still don't like the fact that there is no type specified at the point of declaration.   How does it deal with:   var a;   . . . . a = 1; a = "xyz";   after first use a has always to be int (or is that a double, float, decimal)?...
GeneralRe: Type Inferencememberdan neely14 Sep '05 - 7:32 
It doesn't. You have to implictly provide the type of a var by assigning it a value at declaration. The type can't change subsequently.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 13 Sep 2005
Article Copyright 2005 by Ayende @ Rahien
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid