InfoQ

InfoQ

News

My Bookmarks

Login or Register to enable bookmarks for unlimited time.

The content has been bookmarked!

There was an error bookmarking this content! Please retry.

Mono Introduces Experimental C# Language Extensions

Posted by Jonathan Allen on Dec 28, 2009

Sections
Architecture & Design,
Development
Topics
C# ,
.NET Languages ,
Mono ,
.NET ,
Programming ,
Language Design ,
C# 4

Having caught with the recent advances in Microsoft’s C# 4, the Mono team is now playing with their own extensions to the language. The two features they are experimenting with are string interpolation and support for multiple return values.

String interpolation is essentially a shortcut for the String.Format syntax. Instead of explicitly calling that function with a string containing numeric placeholders, the string is constructed using expressions in the placeholders. For example,

var a = 'Hello {name} how are you?';

Note that in this example from Miguel de Icaza, the string is detonated by single quotes instead of double-quotes. Miguel is currently soliciting feedback on this feature from Python and Ruby users, as he expects them to be more familiar with any potential problems.

The second language extension is support for tuples, also known as multiple return values. Given a function that returns a tuple, his patch would allow the function to be called and the tuple unpacked in the same line.

Tuple<string, string, string, int, string> ParseUri (string url);
(user, password, host, port, path) = ParseUri (url);

Creating and returning a tuple would look just like the assignment syntax. Miguel is also considering extending this to support slicing arrays, enumerations, and older forms of tuple such as DictionaryEntry.

the real value is in pattern matching by Morgan Creighton Posted
Anders Hejlsberg take note for c# 5.0 by Binoj Antony Posted
  1. Back to top

    the real value is in pattern matching

    by Morgan Creighton

    The real value of multiple return values comes from pattern matching, as it does in a language like Scala. I really want to be able to pattern match on the values returned, not just their types, so I can write expressive code like...

    (true, response) = someFunctionThatMightFail()

    Hopefully, this sort of thing is considered when introducing tuples to Mono.

  2. Back to top

    Anders Hejlsberg take note for c# 5.0

    by Binoj Antony

    Always wanted the multiple return value feature from c#, Anders Hejlsberg should take note of this and think of implementing it in c# 5.0