Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

What is LINQ?

OpenStudy (jagatuba):

Language Integrated Query (LINQ, pronounced "link") is a Microsoft .NET Framework component that adds native data querying capabilities to .NET languages, although ports exist for Java[1], PHP and JavaScript. (Wikipedia)

OpenStudy (anonymous):

It basically lets you take a list, and perform actions on it. The second line of this code uses LINQ to find all members in the list beginning with "t": Dim lst = New List(Of String)({"one", "two", "three"}) Dim t_list = lst.Where(Function(a) a.StartsWith("t")) Console.WriteLine(String.Join(",", t_list)) This VB code will output "two,three"

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!