Silverlight Demos For Beginners
View more presentations from Gaurav Arora.
Session is started after Chandershekhar's Speech on VS2010 and a Small session thereon.
I want to share with all of you guys that in the month of october I made hat-trick, I got three consequent awards from DotNetSpider.com, for my involvement in the community.
delegate int myDel(int intMyNum);static void Main(string[] args){//assign lambda expression to a delegate:myDel myDelegate = myExp => myExp / 10;int intRes = myDelegate(110);Console.WriteLine(”Output {0}”, intRes);Console.ReadLine();//Create an expression tree type//This needs System.Linq.ExpressionsExpressionmyExpDel = myExp => myExp /10; }