I'd rather not use Linq if I don't have to (I remove references to it when I start a new project). Lambdas look useful, though. I'm not going to get in the habit of using lambdas, however, if Linq has to tag along for the ride.
Thanks in advance
Lambdas can be used whenever you want. They're a new language feature. Linq uses them, but you don't have to use linq.
Action blah = () => { System.Console.WriteLine("Hello World!"); }
blah(); // will write Hello World! to the console
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With