Attention: We are retiring the ASP.NET Community Blogs. Learn more >

Download my slides for Heroes Community Launch {Here} in Microsoft Malaysia

My session was called C# 3.0 Syntactic Sugar ++. It was really about c# 3.0 but I was thinking about discussing other elements like software practices, lacking in software industry especially Malaysia, Visual Studio 2008 in general in case these audiences were new to this platform, etc.

I was on the breakout sessions which was held in the Level 29th, Microsoft Malaysia's boardroom. Nice place though.

I noticed few developers from ExactSoftware, eGenting, HongLeong Bank and other SMEs. Nice people :) There was one lady attending this session too. Thanks for supporting.

I failed to demo Lambda expression as I wasn't able to recall the syntax. Too many demos, and my brain wasn't functioning properly. Below is the code:

string[] listOfNames = { "Wen Ching", "Lau", "Steven", "Kok Wai" };

IEnumerable<string> query = listOfNames .Where(n => n.Contains("a"))

.Select(n => n.ToUpper()); 

As you know when I present, I never drag and drop snippets. I prefer to code on the spot as it has more weightage to my audiences :) Developers Rocks.

Hope you like my presentation and you can download the slides as below

CSharp_Syntactic_Sugar_ Chua_Wen Ching.zip

No Comments