TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
chaitanyapai pai
NA
5
1.5k
Lambda expressions with List in C#
Jul 17 2013 3:27 AM
Please consider this example,
List
lst = new List
{ 1, 2, 3, 4 };
int result = lst.Aggregate((x, y) => x * y);
As per the articles (x,y) specifies input parameters and x*y as implementation, my doubt is, aggregate() is the method of list, then it has to have inner implementation of aggregation by its own, then what (x*y) specifies or rather needed here...
Please mention the articles explaining lambda and list separately...
Thanks in advance,
Reply
Answers (
4
)
How to write C# code for upload a video file
Calling R.exe from command prompt using C# not working