SlideShare a Scribd company logo
Diving into Visual Studio 2015 (Day #5): Debugging
Improvements in Visual Studio 2015 (Part 1)
-Akhil Mittal
Introduction
Visual Studio has always been a great IDE for code debugging. It provides a numerous features for debugging and
configuring the code. Being a developer we always spend a lot of time spend time in running and debugging the
code, therefore improvements to debugging features can have a big impact on our productivity. This article covers the
debugging improvements that Visual Studio 2015 has come up with. Following are the few of the major features that
will be covered in this article
 Breakpoint configuration improvements
 New improved Error List
 Tool window support for LINQ and lambda expressions
 New PerfTips displaying execution time in the code editor
 New Diagnostic Tools window
Breakpoint configuration improvements
The earlier versions of Visual Studio already provided the feature of breakpoint configuration , so it’s not new to
developer. The only thing new in Visual Studio 2015 is the user experience and ease of using the configurations.
Breakpoint configuration is now more easier to use and reachable. Visual tudio 2015 introduces a new inline
toolbar. With this toolbar you can easily open the Breakpoint Configuration Settings or enable/disable the breakpoint.
Secondly, the Context menu for break point configuration in Visual Studio 2015 is simplified. The few options of the
Context menu have been moved to the Breakpoint Configuration Settings window. The Settings window now comes in a
peek window, so you can easily check and change the settings as there will be no modal window. The whole breakpoint
configuration is now divided into two parts, Actions and Conditions. Let us understand the topic in detail with practical
implementation.I am using Visual Studio 2015 enterprise edition for this article and have added a console application
named VS2015ConsoleApplication in my Visual Studio.Let’s say we have a MyProduct class containing product as an
entity specific basic operations like fetching the product, returning the list of products as shown below.
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: using System.Threading.Tasks;
6:
7: namespace VS2015ConsoleApplication
8: {
9: public class MyProducts :IProducts
10: {
11: List<Product> _allProduct = new List<Product>();
12: public MyProducts()
13: {
14: _allProduct.Add(new Product
{ProductCode="0001",ProductName="IPhone",ProductPrice="60000",ProductType="Phone",ProductDescription="Apple
IPhone" } );
15: _allProduct.Add(new Product { ProductCode = "0002", ProductName = "Canvas", ProductPrice =
"20000", ProductType = "Phone", ProductDescription = "Micromax phone" });
16: _allProduct.Add(new Product { ProductCode = "0003", ProductName = "IPad", ProductPrice =
"30000", ProductType = "Tab", ProductDescription = "Apple IPad" });
17: _allProduct.Add(new Product { ProductCode = "0004", ProductName = "Nexus", ProductPrice =
"30000", ProductType = "Phone", ProductDescription = "Google Phone" });
18: _allProduct.Add(new Product { ProductCode = "0005", ProductName = "S6", ProductPrice =
"40000", ProductType = "Phone", ProductDescription = "Samsung phone" });
19:
20: }
21:
22: /// <summary>
23: /// FetchProduct having price greater that 3000
24: /// </summary>
25: /// <returns></returns>
26: public List<Product> FetchProduct() => (from p in _allProduct where
Convert.ToInt32(p.ProductPrice) > 30000 select p).ToList();
27:
28: /// <summary>
29: /// FetchProduct
30: /// </summary>
31: /// <param name="pCode"></param>
32: /// <returns></returns>
33: public Product FetchProduct(string pCode)
34: {
35: return _allProduct.Find(p => p.ProductCode == pCode);
36: }
37:
38: /// <summary>
39: /// FetchProduct with productCode and productName
40: /// </summary>
41: /// <param name="productCode"></param>
42: /// <param name="productName"></param>
43: /// <returns></returns>
44: public Product FetchProduct(string productCode, string productName)
45: {
46: return _allProduct.Find(p => p.ProductCode == productCode && p.ProductName==productName);
47: }
48:
49: public List<Product> GetProductList()
50: {
51: return _allProduct;
52: }
53: }
54: }
where IProducts is a simple interface.
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: using System.Threading.Tasks;
6:
7: namespace VS2015ConsoleApplication
8: {
9: interface IProducts
10: {
11: Product FetchProduct(string productCode);
12: Product FetchProduct(string productCode,string productName);
13: List<Product> GetProductList();
14: }
15: }
In the following Program class, we are just fetching all the products and creating a new list of products for a new entity
named ProductCodeWithPrice, where we list only the product code and price of products.
1: using System;
2: using System.Collections.Generic;
3: using System.Linq;
4: using System.Text;
5: using System.Threading.Tasks;
6:
7: namespace VS2015ConsoleApplication
8: {
9: public class ProductCodeWithPrice
10: {
11: public string ProductCode { get; set; }
12: public string ProductPrice { get; set; }
13:
14: }
15: class Program
16: {
17: static void Main()
18: {
19: var myProducts = new MyProducts();
20: var products = new List<ProductCodeWithPrice>();
21: var allProducts = myProducts.GetProductList();
22: foreach (var product in allProducts )
23: {
24: ProductCodeWithPrice prod = new ProductCodeWithPrice();
25: prod.ProductCode = product.ProductCode;
26: prod.ProductPrice = product.ProductPrice;
27: products.Add(prod);
28: }
29: Console.ReadLine();
30: }
31: }
32: }
Now let us say we are debugging the code while a new product list is created and we want to place a breakpoint after a
new ProductCodePrice instance is created in foreach loop.
When a breakpoint is put at line 27, notice the new inline toolbar. From here I can open the Settings or Enable and
Disable the breakpoint. When we right click on the breakpoint to open the context menu, we see a new simplified
context menu with most of the options that use to be presenting there now moved to settings option.
Let's again check the inline toolbar. Let's pick the Settings option. Notice that the settings now appear in a peek window
instead of a modal dialog window. This helps a developer to easily modify the settings while debugging.
Conditions
Let's try to explore how conditions work. When we place a breakpoint and open the settings window, it shows options
for Conditions and Actions and also mentions the location of breakpoint with the details like file name, line number and
character position. Clicking on conditions checkbox shows some other options on how a condition can be configured.
The default is Conditional Expression, but there are two other options as well i.e. Hit Count and Filter. Hit Count option is
used when there is a need that an execution pause is required at a particular iteration in the loop.
The second drop down list is used to validate the condition. In this case we have placed a breakpoint after prod object is
created in each iteration.
Notice that we could pick Is a multiple of, or greater than or equal to to validate the Hit Count.
Let’s suppose there is a scenario where we need to pause the execution and check the products list values after 3
iterations. So we choose Hit Count option as condition and “Is equal” to option in second dropdown and in the text box
near to it, type 3. This means that when the loop will be running third time the execution is paused at line number 27
therefore hitting the breakpoint. Run the application and wait for the breakpoint to get hit.
Notice that the conditions information is live. It shows me the current Hit Count. The application stopped at debug point
when the hit count was 3. At this point the count can also be changed, let’s change it to 4, or it could simply be reset,
and data tooltips can still be used to view the variables. If we hover over the products list we can see it already
has two products (prod) in it, so we must be in the third iteration of the loop because we're breaking before we're
adding to the list.
One of the interesting feature w.r.t. Visual Studio 2015 break point configuration is that if a breakpoint is accidentally
deleted , it could again be applied by using Ctrl+Z.
A breakpoint condition with the Hit Count can be used any time if we need to hit the breakpoint at specific hit count or
at some particular interval of hits. This is normally useful while processing lists of items and in recursive methods. Even
though the application is still running, another condition can also be selected to be added, let's add it through the
conditional expression. We’ll check this by adding a Conditional Expression here. Let’s say we want the breakpoint to be
hit when the product code of prod instance is “0004” . So click on Add condition option while the application is stopped
at the breakpoint and add a conditional expression.
You can add multiple conditions and configure your breakpoint for desired debugging to improve productivity.When Add
condition option is clicked a new row is added with all available options as shown earlier while applying Hit Count
breakpoint. Choose conditional expression option and validate it to be true when prod.ProductCode==”0004”. Notice
that you can write any expression in the expression textbox. The expression could be simple or complex with multiple
&& and || conditions too. Moreover while typing, the intellisense also works and helps to create expressions.
If you want you can delete the prior condition of hit count , else the debug point will be hit multiple times.I am removing
the prior condition here. Run the application and you’ll see that the break point is hit when the condition that was
mentioned at breakpoint becomes true.
We see here the execution stops as soon as the condition of product code being “0004” is met.
Actions
Let us see how Actions work. By default, when the conditions are true, the debugger will pause at the
particular breakpoint. This behavior can also be configured by checking the actions. One can select to log the message,
enter the desired message in the Message field provided.
We can also enter desired plain text of our choice and customize the message for better readability and understanding.
Dollar ($) can be used to display system values here,When you type dollar in the message field , you get the list of all the
pseudo variables that can be used to log the message.
Curly braces {} are used to display the output or variables from the application or code base and you get the intellisense
support as well in the message fields. You can log the message in output window. let’s give it a try and try to log
something at this breakpoint condition. You also have the option to Continue execution. This option refrains the
debugger from pausing each time a breakpoint is hit.This option could be selected if you want to log the message
without stopping at the breakpoint.
In actions message field, I am trying to log a message when the condition of prod having product code == “0004” is true.
I have configured the message field to log $Function , $TID, $TNAME along with {prod} i.e. product instance and
prod.ProductCode. notice that I have also used plain text like “Method : ”, “Product Instance”, “Product Code” to make
my message more readable. I have chosen to continue the execution without stopping at breakpoint. Let’s run the
application and see what happens.
All the information that we defined in Message field is logged into output window as desired. All the details along with
the plain text that I used is logged in the same sequence as defined. You can use the Log a message action anytime
when you want to display information each time the breakpoint is hit.
New improved Error List
The new Error List in Visual Studio 2015 is now much more improved where you can get your live list of compiler and
code analysis errors and warnings. The major improvements in the Error List include display of the error code, linked to a
document on that issue. You can click that link to view the document online. Filtering has been expanded much
more. One can still filter on current project or document, but now filtering can also be done on error severity, the error
code, a set of projects or on a set of files.
The maximum error limit in Visual Studio 2015 has also been removed. Earlier there was no way to really tell how many
errors we had in one go when the error number was too high. Each time we fix certain numbers of errors, we were
shown more errors on compilation Now, all of your errors and warnings will appear in the Error List in one go.Let’s
practically try to see the error list improvements. I have intentionally made few changes in the Main method of
program.cs class to get some errors and warnings. I have removed var from products declaration, added an empty catch
block with an empty finally block. Before compiling the code, I have also enabled the Enable Code Analysis on Build
option. You can find this option by right clicking on your project, open properties and in properties window select Code
Analysis option , normally appears at last as shown in the image.
Now when we compile that code we get few errors and warning as expected.
we see here that we get errors and warnings from the compiler and as well from the code analyzer. CS as a prefix to the
error/warning code represents that it is through compiler and CC represents code analyzers here. We got all the
expected warnings and errors. Notice that errors and warnings have their respective symbols. The tabs at the top shows
2 Errors, 5 Warnings and 1 Message. You can choose these options to filter and see what you need. Let’s say you don’t
want to see Warnings and Messages, then you can click on the respective tabs above to see only Error list. Notice that
every error code is in the form of a link when you click on any error code, it redirects you to its documentation
page.Let’s click on CS 0103 i.e. the first error saying “The name ‘products’ does not exist in the current context”.
We see that the ink has redirected to MSDN link having detailed document of that error.
Filtering has been expanded more to filter on errors, warning and severity as well. To check that just click on top of the
columns of error list where the error/warning symbol is displayed.
As soon as you click on the top as shown in the above image, the filter option will appear there itself and you can click
that filter icon to see the types of more available filters.
You can choose to filter the list based on your selection by checking or un checking the check box. Filter option is widely
available for code as well as for Projects. You can particularly select which code to include as shown below in the image,
Or which project or files to select as a filter.
So you can see that filtering option has been expanded to take care of multiple options therefore improving control,
configurations and productivity of a developer.
Conclusion
In this article we covered the new improved debugging techniques that Visual Studio 2015 has come up with. We
covered the break point configurations with several practical scenarios and sneak peeked in new improved Error list.
These options can also be found in prior versions of Visual Studio, but VS 2015 has an improved and more discoverable
version of them. In the next article we’ll cover the remaining two debugging options that are PerfTips and new
diagnostic tool window.
For more technical articles you can reach out to my personal blog, CodeTeddy.

More Related Content

PDF
Diving into VS 2015 Day3
Akhil Mittal
 
PDF
Diving into VS 2015 Day1
Akhil Mittal
 
DOC
Hats tutorial custom widget
Erick Souza Martinho
 
PDF
Diving into VS 2015 Day2
Akhil Mittal
 
PPT
Android User Interface: Basic Form Widgets
Ahsanul Karim
 
PPTX
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Ahsanul Karim
 
PPTX
Android Tutorials : Basic widgets
Prajyot Mainkar
 
PDF
Rc085 010d-vaadin7
Cosmina Ivan
 
Diving into VS 2015 Day3
Akhil Mittal
 
Diving into VS 2015 Day1
Akhil Mittal
 
Hats tutorial custom widget
Erick Souza Martinho
 
Diving into VS 2015 Day2
Akhil Mittal
 
Android User Interface: Basic Form Widgets
Ahsanul Karim
 
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Ahsanul Karim
 
Android Tutorials : Basic widgets
Prajyot Mainkar
 
Rc085 010d-vaadin7
Cosmina Ivan
 

What's hot (18)

PDF
Paymentwall integration-checklist
נאור עמית
 
PPT
C# Tutorial MSM_Murach chapter-18-slides
Sami Mut
 
PPTX
Factory Method Pattern
Anjan Kumar Bollam
 
PPT
06 procedures
Jomel Penalba
 
PDF
iOS Contact List Application Tutorial
Ishara Amarasekera
 
DOCX
377776000 call-badi-from-report
Faina Fridman
 
PDF
Ivanti Cheat Sheet by Traversys Limited
Tim Read
 
PDF
Java 14 support in Eclipse IDE
Noopur Gupta
 
PDF
A comprehensive guide on developing responsive and common react filter component
Katy Slemon
 
PPTX
Day 15: Working in Background
Ahsanul Karim
 
DOCX
Leture5 exercise onactivities
maamir farooq
 
DOCX
Oracle Personalization How To Restricting users from assigning items to diffe...
Ahmed Elshayeb
 
PDF
AUTOCODECOVERGEN: PROTOTYPE OF DATA DRIVEN UNIT TEST GENRATION TOOL THAT GUAR...
acijjournal
 
PDF
Advance RCP
Rahul Shukla
 
PPT
Day 4: Android: UI Widgets
Ahsanul Karim
 
PDF
CIC_Manual.pdf
RMani7
 
PPT
C# Tutorial MSM_Murach chapter-06-slides
Sami Mut
 
PDF
Build your first rpa bot using IBM RPA automation
Winton Winton
 
Paymentwall integration-checklist
נאור עמית
 
C# Tutorial MSM_Murach chapter-18-slides
Sami Mut
 
Factory Method Pattern
Anjan Kumar Bollam
 
06 procedures
Jomel Penalba
 
iOS Contact List Application Tutorial
Ishara Amarasekera
 
377776000 call-badi-from-report
Faina Fridman
 
Ivanti Cheat Sheet by Traversys Limited
Tim Read
 
Java 14 support in Eclipse IDE
Noopur Gupta
 
A comprehensive guide on developing responsive and common react filter component
Katy Slemon
 
Day 15: Working in Background
Ahsanul Karim
 
Leture5 exercise onactivities
maamir farooq
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Ahmed Elshayeb
 
AUTOCODECOVERGEN: PROTOTYPE OF DATA DRIVEN UNIT TEST GENRATION TOOL THAT GUAR...
acijjournal
 
Advance RCP
Rahul Shukla
 
Day 4: Android: UI Widgets
Ahsanul Karim
 
CIC_Manual.pdf
RMani7
 
C# Tutorial MSM_Murach chapter-06-slides
Sami Mut
 
Build your first rpa bot using IBM RPA automation
Winton Winton
 
Ad

Viewers also liked (12)

PDF
OOP Fundamentals in c#
Fernando Galvan
 
PPTX
MVC 3
agni_agbc
 
PDF
OOP vs COP
Gianluca Padovani
 
PPSX
C#.net applied OOP - Batch 3
Md. Mahedee Hasan
 
PDF
PDFArticle
Akhil Mittal
 
PDF
Diving in OOP (Day 2): Polymorphism and Inheritance (Inheritance)
Akhil Mittal
 
PPTX
Unusual C# - OOP
Medhat Dawoud
 
PDF
Diving in OOP (Day 3): Polymorphism and Inheritance (Dynamic Binding/Run Time...
Akhil Mittal
 
PPT
What does OOP stand for?
Colin Riley
 
PPSX
C#, OOP introduction and examples
agni_agbc
 
PPSX
C# OOP Advanced Concepts
agni_agbc
 
PPT
Object Oriented Programming Concepts
thinkphp
 
OOP Fundamentals in c#
Fernando Galvan
 
MVC 3
agni_agbc
 
OOP vs COP
Gianluca Padovani
 
C#.net applied OOP - Batch 3
Md. Mahedee Hasan
 
PDFArticle
Akhil Mittal
 
Diving in OOP (Day 2): Polymorphism and Inheritance (Inheritance)
Akhil Mittal
 
Unusual C# - OOP
Medhat Dawoud
 
Diving in OOP (Day 3): Polymorphism and Inheritance (Dynamic Binding/Run Time...
Akhil Mittal
 
What does OOP stand for?
Colin Riley
 
C#, OOP introduction and examples
agni_agbc
 
C# OOP Advanced Concepts
agni_agbc
 
Object Oriented Programming Concepts
thinkphp
 
Ad

Similar to Diving into VS 2015 Day5 (20)

PPTX
Debugging application using visual studio 2010 and intellitrace
Abhimanyu Singhal
 
PPTX
Debugging with visual studio beyond 'F5'
Dror Helper
 
PPTX
Vb essentials
sagaroceanic11
 
PPTX
ASP.Net 5 and C# 6
Andy Butland
 
PPTX
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
Dave Bost
 
PPT
A Lap Around Visual Studio 2010
Abram John Limpin
 
PDF
C Package 100 Knock 1 Hour Mastery Series 2024 Edition text version Tenko dow...
jdavidghorra
 
PDF
[Ebooks PDF] download C Package 100 Knock 1 Hour Mastery Series 2024 Edition ...
yegbeyboame
 
PPTX
C-Sharp 6.0 ver2
Tome Tomovski
 
PDF
Spaghetti gate
Jon Bachelor
 
PPTX
Debugging in .Net
Muhammad Amir
 
PPTX
The Little Wonders of C# 6
BlackRabbitCoder
 
PPTX
How To Code in C#
David Ringsell
 
PDF
C# 10 in a Nutshell_ The Definitive Reference-O'Reilly Media (2022).pdf
ssuser2a88da1
 
PDF
Make sure to make a copy of the Google Doc for this lab into.pdf
adityastores21
 
PDF
Diving into VS 2015 Day4
Akhil Mittal
 
PPTX
Diagnosing issues in your ASP.NET applications in production with Visual Stud...
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
PPTX
Core .NET Framework 4.0 Enhancements
Robert MacLean
 
PPTX
Why you should be using the shiny new C# 6.0 features now!
Eric Phan
 
PPTX
What's coming to c# (Tel-Aviv, 2018)
Moaid Hathot
 
Debugging application using visual studio 2010 and intellitrace
Abhimanyu Singhal
 
Debugging with visual studio beyond 'F5'
Dror Helper
 
Vb essentials
sagaroceanic11
 
ASP.Net 5 and C# 6
Andy Butland
 
MSDN Presents: Visual Studio 2010, .NET 4, SharePoint 2010 for Developers
Dave Bost
 
A Lap Around Visual Studio 2010
Abram John Limpin
 
C Package 100 Knock 1 Hour Mastery Series 2024 Edition text version Tenko dow...
jdavidghorra
 
[Ebooks PDF] download C Package 100 Knock 1 Hour Mastery Series 2024 Edition ...
yegbeyboame
 
C-Sharp 6.0 ver2
Tome Tomovski
 
Spaghetti gate
Jon Bachelor
 
Debugging in .Net
Muhammad Amir
 
The Little Wonders of C# 6
BlackRabbitCoder
 
How To Code in C#
David Ringsell
 
C# 10 in a Nutshell_ The Definitive Reference-O'Reilly Media (2022).pdf
ssuser2a88da1
 
Make sure to make a copy of the Google Doc for this lab into.pdf
adityastores21
 
Diving into VS 2015 Day4
Akhil Mittal
 
Diagnosing issues in your ASP.NET applications in production with Visual Stud...
Microsoft Developer Network (MSDN) - Belgium and Luxembourg
 
Core .NET Framework 4.0 Enhancements
Robert MacLean
 
Why you should be using the shiny new C# 6.0 features now!
Eric Phan
 
What's coming to c# (Tel-Aviv, 2018)
Moaid Hathot
 

More from Akhil Mittal (20)

PDF
Agile Release Planning
Akhil Mittal
 
PDF
RESTfulDay9
Akhil Mittal
 
PDF
PDF_Article
Akhil Mittal
 
PDF
RESTful Day 7
Akhil Mittal
 
PDF
RESTful Day 6
Akhil Mittal
 
DOCX
Generic Repository Pattern in MVC3 Application with Entity Framework
Akhil Mittal
 
DOCX
Repository Pattern in MVC3 Application with Entity Framework
Akhil Mittal
 
DOCX
MVC Application using EntityFramework Code-First approach Part4
Akhil Mittal
 
DOCX
Learning MVC Part 3 Creating MVC Application with EntityFramework
Akhil Mittal
 
DOCX
LearningMVCWithLINQToSQL
Akhil Mittal
 
DOCX
IntroductionToMVC
Akhil Mittal
 
PDF
RESTful Day 5
Akhil Mittal
 
PDF
C sharp and asp.net interview questions
Akhil Mittal
 
PDF
Asp.net interview questions
Akhil Mittal
 
PDF
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Akhil Mittal
 
PDF
Custom URL Re-Writing/Routing using Attribute Routes in MVC 4 Web APIs
Akhil Mittal
 
PDF
Resolve dependency of dependencies using Inversion of Control and dependency ...
Akhil Mittal
 
PDF
Inversion of control using dependency injection in Web APIs using Unity Conta...
Akhil Mittal
 
PDF
Enterprise Level Application Architecture with Web APIs using Entity Framewor...
Akhil Mittal
 
PDF
Diving in OOP (Day 6): Understanding Enums in C# (A Practical Approach)
Akhil Mittal
 
Agile Release Planning
Akhil Mittal
 
RESTfulDay9
Akhil Mittal
 
PDF_Article
Akhil Mittal
 
RESTful Day 7
Akhil Mittal
 
RESTful Day 6
Akhil Mittal
 
Generic Repository Pattern in MVC3 Application with Entity Framework
Akhil Mittal
 
Repository Pattern in MVC3 Application with Entity Framework
Akhil Mittal
 
MVC Application using EntityFramework Code-First approach Part4
Akhil Mittal
 
Learning MVC Part 3 Creating MVC Application with EntityFramework
Akhil Mittal
 
LearningMVCWithLINQToSQL
Akhil Mittal
 
IntroductionToMVC
Akhil Mittal
 
RESTful Day 5
Akhil Mittal
 
C sharp and asp.net interview questions
Akhil Mittal
 
Asp.net interview questions
Akhil Mittal
 
Diving in OOP (Day 1) : Polymorphism and Inheritance (Early Binding/Compile T...
Akhil Mittal
 
Custom URL Re-Writing/Routing using Attribute Routes in MVC 4 Web APIs
Akhil Mittal
 
Resolve dependency of dependencies using Inversion of Control and dependency ...
Akhil Mittal
 
Inversion of control using dependency injection in Web APIs using Unity Conta...
Akhil Mittal
 
Enterprise Level Application Architecture with Web APIs using Entity Framewor...
Akhil Mittal
 
Diving in OOP (Day 6): Understanding Enums in C# (A Practical Approach)
Akhil Mittal
 

Diving into VS 2015 Day5

  • 1. Diving into Visual Studio 2015 (Day #5): Debugging Improvements in Visual Studio 2015 (Part 1) -Akhil Mittal Introduction Visual Studio has always been a great IDE for code debugging. It provides a numerous features for debugging and configuring the code. Being a developer we always spend a lot of time spend time in running and debugging the code, therefore improvements to debugging features can have a big impact on our productivity. This article covers the debugging improvements that Visual Studio 2015 has come up with. Following are the few of the major features that will be covered in this article  Breakpoint configuration improvements  New improved Error List  Tool window support for LINQ and lambda expressions  New PerfTips displaying execution time in the code editor  New Diagnostic Tools window Breakpoint configuration improvements The earlier versions of Visual Studio already provided the feature of breakpoint configuration , so it’s not new to developer. The only thing new in Visual Studio 2015 is the user experience and ease of using the configurations. Breakpoint configuration is now more easier to use and reachable. Visual tudio 2015 introduces a new inline
  • 2. toolbar. With this toolbar you can easily open the Breakpoint Configuration Settings or enable/disable the breakpoint. Secondly, the Context menu for break point configuration in Visual Studio 2015 is simplified. The few options of the Context menu have been moved to the Breakpoint Configuration Settings window. The Settings window now comes in a peek window, so you can easily check and change the settings as there will be no modal window. The whole breakpoint configuration is now divided into two parts, Actions and Conditions. Let us understand the topic in detail with practical implementation.I am using Visual Studio 2015 enterprise edition for this article and have added a console application named VS2015ConsoleApplication in my Visual Studio.Let’s say we have a MyProduct class containing product as an entity specific basic operations like fetching the product, returning the list of products as shown below. 1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.Threading.Tasks; 6: 7: namespace VS2015ConsoleApplication 8: { 9: public class MyProducts :IProducts 10: { 11: List<Product> _allProduct = new List<Product>(); 12: public MyProducts() 13: { 14: _allProduct.Add(new Product {ProductCode="0001",ProductName="IPhone",ProductPrice="60000",ProductType="Phone",ProductDescription="Apple IPhone" } ); 15: _allProduct.Add(new Product { ProductCode = "0002", ProductName = "Canvas", ProductPrice = "20000", ProductType = "Phone", ProductDescription = "Micromax phone" }); 16: _allProduct.Add(new Product { ProductCode = "0003", ProductName = "IPad", ProductPrice = "30000", ProductType = "Tab", ProductDescription = "Apple IPad" }); 17: _allProduct.Add(new Product { ProductCode = "0004", ProductName = "Nexus", ProductPrice = "30000", ProductType = "Phone", ProductDescription = "Google Phone" }); 18: _allProduct.Add(new Product { ProductCode = "0005", ProductName = "S6", ProductPrice = "40000", ProductType = "Phone", ProductDescription = "Samsung phone" }); 19: 20: } 21: 22: /// <summary> 23: /// FetchProduct having price greater that 3000 24: /// </summary> 25: /// <returns></returns> 26: public List<Product> FetchProduct() => (from p in _allProduct where Convert.ToInt32(p.ProductPrice) > 30000 select p).ToList(); 27: 28: /// <summary> 29: /// FetchProduct 30: /// </summary> 31: /// <param name="pCode"></param> 32: /// <returns></returns> 33: public Product FetchProduct(string pCode) 34: { 35: return _allProduct.Find(p => p.ProductCode == pCode); 36: } 37: 38: /// <summary> 39: /// FetchProduct with productCode and productName 40: /// </summary> 41: /// <param name="productCode"></param> 42: /// <param name="productName"></param> 43: /// <returns></returns>
  • 3. 44: public Product FetchProduct(string productCode, string productName) 45: { 46: return _allProduct.Find(p => p.ProductCode == productCode && p.ProductName==productName); 47: } 48: 49: public List<Product> GetProductList() 50: { 51: return _allProduct; 52: } 53: } 54: } where IProducts is a simple interface. 1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.Threading.Tasks; 6: 7: namespace VS2015ConsoleApplication 8: { 9: interface IProducts 10: { 11: Product FetchProduct(string productCode); 12: Product FetchProduct(string productCode,string productName); 13: List<Product> GetProductList(); 14: } 15: } In the following Program class, we are just fetching all the products and creating a new list of products for a new entity named ProductCodeWithPrice, where we list only the product code and price of products. 1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: using System.Threading.Tasks; 6: 7: namespace VS2015ConsoleApplication 8: { 9: public class ProductCodeWithPrice 10: { 11: public string ProductCode { get; set; } 12: public string ProductPrice { get; set; } 13: 14: } 15: class Program 16: { 17: static void Main() 18: { 19: var myProducts = new MyProducts(); 20: var products = new List<ProductCodeWithPrice>(); 21: var allProducts = myProducts.GetProductList(); 22: foreach (var product in allProducts ) 23: { 24: ProductCodeWithPrice prod = new ProductCodeWithPrice(); 25: prod.ProductCode = product.ProductCode; 26: prod.ProductPrice = product.ProductPrice; 27: products.Add(prod); 28: }
  • 4. 29: Console.ReadLine(); 30: } 31: } 32: } Now let us say we are debugging the code while a new product list is created and we want to place a breakpoint after a new ProductCodePrice instance is created in foreach loop. When a breakpoint is put at line 27, notice the new inline toolbar. From here I can open the Settings or Enable and Disable the breakpoint. When we right click on the breakpoint to open the context menu, we see a new simplified context menu with most of the options that use to be presenting there now moved to settings option.
  • 5. Let's again check the inline toolbar. Let's pick the Settings option. Notice that the settings now appear in a peek window instead of a modal dialog window. This helps a developer to easily modify the settings while debugging. Conditions Let's try to explore how conditions work. When we place a breakpoint and open the settings window, it shows options for Conditions and Actions and also mentions the location of breakpoint with the details like file name, line number and character position. Clicking on conditions checkbox shows some other options on how a condition can be configured.
  • 6. The default is Conditional Expression, but there are two other options as well i.e. Hit Count and Filter. Hit Count option is used when there is a need that an execution pause is required at a particular iteration in the loop. The second drop down list is used to validate the condition. In this case we have placed a breakpoint after prod object is created in each iteration. Notice that we could pick Is a multiple of, or greater than or equal to to validate the Hit Count. Let’s suppose there is a scenario where we need to pause the execution and check the products list values after 3 iterations. So we choose Hit Count option as condition and “Is equal” to option in second dropdown and in the text box near to it, type 3. This means that when the loop will be running third time the execution is paused at line number 27 therefore hitting the breakpoint. Run the application and wait for the breakpoint to get hit. Notice that the conditions information is live. It shows me the current Hit Count. The application stopped at debug point when the hit count was 3. At this point the count can also be changed, let’s change it to 4, or it could simply be reset, and data tooltips can still be used to view the variables. If we hover over the products list we can see it already has two products (prod) in it, so we must be in the third iteration of the loop because we're breaking before we're adding to the list.
  • 7. One of the interesting feature w.r.t. Visual Studio 2015 break point configuration is that if a breakpoint is accidentally deleted , it could again be applied by using Ctrl+Z. A breakpoint condition with the Hit Count can be used any time if we need to hit the breakpoint at specific hit count or at some particular interval of hits. This is normally useful while processing lists of items and in recursive methods. Even though the application is still running, another condition can also be selected to be added, let's add it through the conditional expression. We’ll check this by adding a Conditional Expression here. Let’s say we want the breakpoint to be hit when the product code of prod instance is “0004” . So click on Add condition option while the application is stopped at the breakpoint and add a conditional expression. You can add multiple conditions and configure your breakpoint for desired debugging to improve productivity.When Add condition option is clicked a new row is added with all available options as shown earlier while applying Hit Count breakpoint. Choose conditional expression option and validate it to be true when prod.ProductCode==”0004”. Notice that you can write any expression in the expression textbox. The expression could be simple or complex with multiple && and || conditions too. Moreover while typing, the intellisense also works and helps to create expressions.
  • 8. If you want you can delete the prior condition of hit count , else the debug point will be hit multiple times.I am removing the prior condition here. Run the application and you’ll see that the break point is hit when the condition that was mentioned at breakpoint becomes true. We see here the execution stops as soon as the condition of product code being “0004” is met. Actions Let us see how Actions work. By default, when the conditions are true, the debugger will pause at the particular breakpoint. This behavior can also be configured by checking the actions. One can select to log the message, enter the desired message in the Message field provided. We can also enter desired plain text of our choice and customize the message for better readability and understanding. Dollar ($) can be used to display system values here,When you type dollar in the message field , you get the list of all the pseudo variables that can be used to log the message.
  • 9. Curly braces {} are used to display the output or variables from the application or code base and you get the intellisense support as well in the message fields. You can log the message in output window. let’s give it a try and try to log something at this breakpoint condition. You also have the option to Continue execution. This option refrains the debugger from pausing each time a breakpoint is hit.This option could be selected if you want to log the message without stopping at the breakpoint. In actions message field, I am trying to log a message when the condition of prod having product code == “0004” is true. I have configured the message field to log $Function , $TID, $TNAME along with {prod} i.e. product instance and prod.ProductCode. notice that I have also used plain text like “Method : ”, “Product Instance”, “Product Code” to make my message more readable. I have chosen to continue the execution without stopping at breakpoint. Let’s run the application and see what happens.
  • 10. All the information that we defined in Message field is logged into output window as desired. All the details along with the plain text that I used is logged in the same sequence as defined. You can use the Log a message action anytime when you want to display information each time the breakpoint is hit. New improved Error List The new Error List in Visual Studio 2015 is now much more improved where you can get your live list of compiler and code analysis errors and warnings. The major improvements in the Error List include display of the error code, linked to a document on that issue. You can click that link to view the document online. Filtering has been expanded much more. One can still filter on current project or document, but now filtering can also be done on error severity, the error code, a set of projects or on a set of files. The maximum error limit in Visual Studio 2015 has also been removed. Earlier there was no way to really tell how many errors we had in one go when the error number was too high. Each time we fix certain numbers of errors, we were shown more errors on compilation Now, all of your errors and warnings will appear in the Error List in one go.Let’s practically try to see the error list improvements. I have intentionally made few changes in the Main method of program.cs class to get some errors and warnings. I have removed var from products declaration, added an empty catch block with an empty finally block. Before compiling the code, I have also enabled the Enable Code Analysis on Build option. You can find this option by right clicking on your project, open properties and in properties window select Code Analysis option , normally appears at last as shown in the image.
  • 11. Now when we compile that code we get few errors and warning as expected. we see here that we get errors and warnings from the compiler and as well from the code analyzer. CS as a prefix to the error/warning code represents that it is through compiler and CC represents code analyzers here. We got all the expected warnings and errors. Notice that errors and warnings have their respective symbols. The tabs at the top shows 2 Errors, 5 Warnings and 1 Message. You can choose these options to filter and see what you need. Let’s say you don’t want to see Warnings and Messages, then you can click on the respective tabs above to see only Error list. Notice that every error code is in the form of a link when you click on any error code, it redirects you to its documentation page.Let’s click on CS 0103 i.e. the first error saying “The name ‘products’ does not exist in the current context”.
  • 12. We see that the ink has redirected to MSDN link having detailed document of that error. Filtering has been expanded more to filter on errors, warning and severity as well. To check that just click on top of the columns of error list where the error/warning symbol is displayed. As soon as you click on the top as shown in the above image, the filter option will appear there itself and you can click that filter icon to see the types of more available filters.
  • 13. You can choose to filter the list based on your selection by checking or un checking the check box. Filter option is widely available for code as well as for Projects. You can particularly select which code to include as shown below in the image,
  • 14. Or which project or files to select as a filter.
  • 15. So you can see that filtering option has been expanded to take care of multiple options therefore improving control, configurations and productivity of a developer. Conclusion In this article we covered the new improved debugging techniques that Visual Studio 2015 has come up with. We covered the break point configurations with several practical scenarios and sneak peeked in new improved Error list. These options can also be found in prior versions of Visual Studio, but VS 2015 has an improved and more discoverable version of them. In the next article we’ll cover the remaining two debugging options that are PerfTips and new diagnostic tool window. For more technical articles you can reach out to my personal blog, CodeTeddy.