This post originated from an RSS feed registered with Ruby Buzz
by Vincent Foley.
Original Post: C# is turning into Smalltalk?
Feed Title: Uncentered Mind
Feed URL: https://gnuvince.wordpress.com/feed/?cat=2
Feed Description: I ramble, you call me names, we have fun!
I was checking a video about LINQ in C# 3.0 and I was thinking how it begins to ressemble Smalltalk. Take this sample code in C# (not sure if my syntax is correct):
var q =
customers.
where(c => c.City == "Montreal").
select(c => c.CompanyName);
Now, the things in parentheses are lambda expressions. [...]