How to: C# Lambda expression, why should I use this? #development #it #dev
How to: C# Lambda expression, why should I use this? #development #it #dev
C# Lambda expression, why should I use this?
I have quickly read the Microsoft Lambda Expression documentation.
I see example that have help me to understand more like this one :
delegate int del(int i); del myDelegate = x => x * x; int j = myDelegate(5); //j = 25
But, I still do not understand why it’s so an innovation. It’s just a method that die when the “method variable” end, right? Why…
View On WordPress













