<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MsDotNetMentor &#187; LINQ</title>
	<atom:link href="http://www.msdotnetmentor.com/category/linq/feed" rel="self" type="application/rss+xml" />
	<link>http://www.msdotnetmentor.com</link>
	<description>Knowing Is Not Enough We Must Apply</description>
	<lastBuildDate>Wed, 26 May 2010 12:01:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What is a Lambda expression?</title>
		<link>http://www.msdotnetmentor.com/linq/what-is-a-lambda-expression.html</link>
		<comments>http://www.msdotnetmentor.com/linq/what-is-a-lambda-expression.html#comments</comments>
		<pubDate>Sat, 17 Oct 2009 21:28:44 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/index.php/2009/10/what-is-a-lambda-expression/</guid>
		<description><![CDATA[A Lambda expression is nothing but an Anonymous Function, can contain expressions and statements. Lambda expressions can be used mostly to create delegates or expression tree types. Lambda expression uses lambda operator =&#62; and read as â€˜goes toâ€™ operator.
Left side of this operator specifies the input parameters and contains the expression or statement block at the right side.
Example: myExp = myExp/10;
Now, let see how we can assign the above to a delegate and create an expression tree:
delegate int myDel(int intMyNum);
static void Main(string[] args)
{
//assign lambda expression to a delegate:
myDel myDelegate = ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/linq/what-is-a-lambda-expression.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
