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.
Community comments
the real value is in pattern matching
by Morgan Creighton,
Anders Hejlsberg take note for c# 5.0
by Binoj Antony,
the real value is in pattern matching
by Morgan Creighton,
Your message is awaiting moderation. Thank you for participating in the discussion.
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.
Anders Hejlsberg take note for c# 5.0
by Binoj Antony,
Your message is awaiting moderation. Thank you for participating in the discussion.
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