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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: Expression TreesmemberVladD315 Sep '05 - 11:53 
Really no way to make IL by expression trees? Confused | :confused:
Frown | :(
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 ExpressionTrees, which would be closer to what I think of as a lambda.

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 db.Customers
where customer.IsValued==true
select customer;
 
And the where statement will actually get data that is can dissassemble and manipulate. This means that you can write code that is type checked and can be very easily be disassembled to get your meaning.
For instance, DLinq will take the data about customer.IsValued == true and turn it into an SQL fragement, etc.

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 piece. That is equivalent to the following C# 2 code, using standard anonymous delegates:
 
string[] names = GetListOfCustomers().Select(delegate(Customer input)
{
   return input.Name;
});
 
If you didn't want to use anonymous delegates, it would look like this:
 
string[] names = GetListOfCustomers().Select(CustomerToNameConverter);
 
public string CustomerToNameConverter(Customer input)
{
   return input.Name;
}
 
As you can see, the C# 3 syntax is much more concise and far less bloated.
 

Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Dumbest. Movie. Title. Evaaar.
The apostle Paul, modernly speaking: Epistles of Paul
 
Judah Himango


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 childhood."
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 inference is "implicit static typing".
It's much better than VB's implicit dynamic typing.
 
For example, the code:
var a = 3;
a = "Text";

will cause an compiler error because a has the type int.
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 = System.Web.Services.Protocols.SoapHeader();
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. Poke tongue | ;-P
 
InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood a = new InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood();
- or -
var a = new InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood();
- or -
var a = InOtherWordsVBIsLikeABadParentItCanReallyScrewUpYourChildhood();
 
Easy to read, huh?
GeneralRe: Type InferencememberGary Thom14 Sep '05 - 6:52 
Laugh | :laugh:
 
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)?
 
Would I be right in thinking that a "var" has to be scoped locally to a method, rather than global to a class?

 
Gary
 
Marc Clifton: "In other words, VB is like a bad parent. It can really screw up your childhood."
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.
GeneralRe: Type InferencememberGary Thom14 Sep '05 - 8:07 
dan neely wrote:
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
 
Thanks, I assume you have to be careful with number you assign.
 
Gary
 
Marc Clifton: "In other words, VB is like a bad parent. It can really screw up your childhood."
GeneralRe: Type Inferencememberdan neely14 Sep '05 - 9:42 
True. I wonder if 1.2 defaults to float or double.
GeneralRe: Type InferencememberLeslie Sanford14 Sep '05 - 10:06 
dan neely wrote:
True. I wonder if 1.2 defaults to float or double.
 
Double.
 
This code snippet...
 
Console.WriteLine(1.2.GetType().Name);
 
...prints "Double" to the console.
 
If you needed to specify that you wanted float (Single) instead of double, you could do this:
 
Console.WriteLine(1.2f.GetType().Name);
 
Or if you wanted to use double but make it explicit, you would use a 'd' instead of an 'f'.
 

 


GeneralRe: Type InferencememberJoshua Quick14 Sep '05 - 7:09 
This is easy to read too just like your example, and it can be done in VB.Net now:

Dim a As New System.Web.Services.Protocols.SoapHeader

 
But you can't do this in the current version of VB. At least while Option Explicit is on. So, the similarity ends here. But I have to say that "var" does remind me of "Dim".

Dim x = 1

 
I'm just rocking the boat a bit. Smile | :)
GeneralRe: Type InferencememberJudah Himango21 Feb '06 - 7:10 
What you've posted there is totally different. You're telling the compiler to store a SoapHeader object as a System.Object. You lose strong typing and also induce boxing if the type is a value type (such as int, Point, double, etc).
 
C# 3's implementation does not lose strong typing; the compiler infers the type from the usage, meaning less typing for the developer at zero cost of performance.
 
Now, VB9 will include compiler type inference, which means the VB
 
Dim a = ....crazy soap header here()
 
will actually produce strongly-typed code on par with C# 3's var.
GeneralRe: Type InferencememberJoshua Quick21 Feb '06 - 7:55 
Judah Himango wrote:
What you've posted there is totally different. You're telling the compiler to store a SoapHeader object as a System.Object.

 
Actually, you're wrong. It's not being stored into an Object. Notice keyword "As" in the following line. It creates a variable of type SoapHeader and instantiates it all in one shot.
 
Dim a As New System.Web.Services.Protocols.SoapHeader
 
Now if I did the following, then yes, it would be cast to an object. Notice the "=" here.
 
Dim a = New System.Web.Services.Protocols.SoapHeader
GeneralRe: Type InferencememberJudah Himango21 Feb '06 - 8:13 
I stand corrected and humbled. Smile | :)
 

Tech, life, family, faith: Give me a visit.
I'm currently blogging about: Connor's Christmas Spectacular!
Judah Himango


GeneralRe: Type InferencememberOakman20 Sep '05 - 0:41 
Daniel Grunwald wrote:
It's much better than VB's implicit dynamic typing.
 
Doing research before putting your fingers on the keyboard often makes you look smarter.
 
from VB 9.0:
In an implicitly typed local-variable declaration, the type of the local variable is inferred from the initializer expression on the right-hand side of a local declaration statement. For example, the compiler infers the types of all the following variable declarations:
 
Dim Population = 31719
Dim Name = "Belize"
Dim Area = 1.9
Dim Country = New Country{ .Name = "Palau", ...}

 
Jon
Information doesn't want to be free.
It wants to be sixty-nine cents @ pound.
GeneralRe: Type InferencememberDaniel Grunwald21 Sep '05 - 3:12 
I think Gary was referring to VB's loose/weak typing, so that's clearly VB 7/8. I know VB 9 is a great improvement, I think type inference and the other new features fit much better to VB than C#.
It's nice they still do breaking changes like this, C# designers do not even add new keywords to the language. (yield, partial etc. are not keywords).
GeneralRe: Type InferencememberOakman21 Sep '05 - 12:11 
Loose/Weak typing would be a sacrament if C++ had had it and VB6 didn't.
 
Jon
Information doesn't want to be free.
It wants to be sixty-nine cents @ pound.
GeneralNot another C++memberPaul Selormey13 Sep '05 - 13:45 
Hope the excitement about a new language C# will drive it into creating another C++ monster.
 
Best regards,
Paul.
 
Jesus Christ is LOVE! Please tell somebody.

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

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