Category Archives: VSTips

Visual Studio Tip #5: Quickly adding a namespace “using” statement

[cross posted from my MSDN blog] One thing that slows down new C# users is the requirement to add “using” statements to the top of your file. This is because they just want to declare a variable and use it … Continue reading

Posted in VSTips | Leave a comment

Visual Studio Tip #4: Code Snippets

[cross posted from my MSDN blog] There is lots of code that we write that follow standard patterns with some minor changes for our exact situation. Visual Studio has a nice feature called Code Snippets which provides a way to … Continue reading

Posted in VSTips | Leave a comment

Visual Studio Tip #3: Use “Navigate To”

[cross posted from my MSDN blog] I spend a lot of time looking at other people’s code. That means a lot of time searching other people’s code. One of the main tools I use is not Search but “Navigate To”. … Continue reading

Posted in Programming, VSTips | Tagged | Leave a comment

Visual Studio Tip #2: Pin your data tips

[cross posted from my MSDN blog] Most people know that when you are debugging, you can hover the mouse over a variable in your code and the tool tip will provide you the current value. For example, if I hover … Continue reading

Posted in VSTips | Leave a comment

Back to basics: Visual Studio tips

[cross posted from my MSDN blog] Lately I’ve been working a lot with developers who are completely new to C# and/or Visual Studio. So I’ve been trying to gather some features and workflows which I’ve seen new users overlook which … Continue reading

Posted in VSTips | Leave a comment