I have a List<Student> which contains lets say 500 students. When I enter debug mode on a breakpoint, is there a way to filter / search for a student?
I do not want to write code for this check, as shown below:
List<Student> students = data.GetStudents(); //break here and filter for student in debug mode var myStudent = students.Where(k=>k.StudentNumber=="S12312");
Is it impossible to do this in Visual Studio 2013, I think it will be a great opportunity to add ...
source share