Top Banner
10

C#3.0 Language Inovation.Pptx

Dec 17, 2014

Download

Education

Kim DaeYoung

2차 스터디
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: C#3.0 Language Inovation.Pptx
Page 2: C#3.0 Language Inovation.Pptx
Page 3: C#3.0 Language Inovation.Pptx
Page 4: C#3.0 Language Inovation.Pptx
Page 5: C#3.0 Language Inovation.Pptx
Page 6: C#3.0 Language Inovation.Pptx
Page 7: C#3.0 Language Inovation.Pptx
Page 8: C#3.0 Language Inovation.Pptx

C# 1.0C# 1.0

C# 2.0C# 2.0

C# 3.0C# 3.0

Page 9: C#3.0 Language Inovation.Pptx

var contacts = from c in customers where c.State == "WA" select new { c.Name, c.Phone };

var contacts = customers .Where(c => c.State == "WA") .Select(c => new { c.Name, c.Phone });

Page 10: C#3.0 Language Inovation.Pptx