Introduction to LINQ
By AzamSharp
Views: 1341

In this video Mohammad Azam gives an introduction to the Microsoft LINQ framework.

Code from the Video:

static void Main(string[] args)
        {
            string[] names = { "Azam", "John", "Christoper", "Jerry" };

            var persons = from n in names
                          select new
                          {
                              FirstName = n
                          };

            foreach (var person in persons)
            {
                Console.WriteLine(person.FirstName);
            }

        }

[Play the video]

By AzamSharp




Enter Comment/Feedback
  •  
  •  
  •  
  •  
  •  

Comments/Feedbacks
Win a free book
You can win yourself ASP.NET AJAX in ACTION
Read details







Join WebHost4Life.com







Copyright GridViewGuy 2007-2008