RONUA meeting, Timisoara, April 21, 2007

Since this is a local event, I’ll continue the post in Romanian. Sambata, 21 Aprilie 2007, la ora 09:00 are loc intalnirea membrilor Ronua din Timisoara, la LTHD Corporation, str. Ardeal, Nr. 70. Agenda evenimentului este: 09:00 – 09:10 – Intro si networking 09:10 – 10:10 – Introducere in LINQ Marius BANCILA, MVP VC++, SiemensVDO Automotive…

yield keyword and lazy evaluation in C#

yield is a new contextual keyword introduced to C# 2.0, vital for lazy evaluation and the performance of queries in LINQ. Being a contextual keyword means that yield can be used as a variable name in C# without any problem. When put before return it becomes a keyword. yield allows one enumerable class to be…