July 2015
Intermediate to advanced
1300 pages
87h 27m
English
The Visual Studio 2015 IDE introduces support for using lambda expressions in the Watch and Immediate windows; the developer community has been asking for this for many years. Now you can actually debug both lambdas and LINQ queries, and in this chapter you see how to debug a lambda and then, in other chapters in Part IV, you see how to debug a query; you’ll notice that debugging works the same in many cases. To understand how this new feature works, consider the following method, which simply creates a list of some first names, of type String:
Sub GenerateStrings() Dim myList As New List(Of String) From {"Alessandro", "Antonio", "Diego", "Renato"}End Sub
Say that you want to ...