65.9K
CodeProject is changing. Read more.
Home

Tips to Save Time in Typing Repetitive Code in Visual Studio 2010 IDE

starIconstarIconstarIcon
emptyStarIcon
starIcon
emptyStarIcon

3.14/5 (7 votes)

Sep 13, 2013

CPOL

1 min read

viewsIcon

13986

Tips to save time in typing repetitive code in Visual Studio 2010 IDE

Introduction

Given below are some tips to save time in typing repetitive code in Visual Studio 2010 IDE.

Using the Code

  1. Use code snippets

    For example: prop is an expansion snippet; to use it type “prop”.

    Press Tab, Tab:

    Different code snippets in VS2010 are as follows:

    • try -> for exception handling block
    • tryf -> for exception handling block with finally block
    • for -> for loop block
    • foreach -> foreach loop block
    • svm -> static void Main block
    • ctor -> constructor block
    • testc -> test case block

    For example: region is a Surrounds With code snippet; to use it type “region”.

    Select the class or method to be surrounded with Region code snippet.

  2. Code rush to create code blocks

    Enum can be used create switch cases

    Switch is an expansion code snippet to create switch-case block, then type name of the enum in the square braces and press Shift + Down Arrow key to get the cases for switch case.

  3. Search any file directly from Find combo box.

    Type “>Open <>” in find combo box to get the file directly.

  4. Add namespaces in using block.

    For example: Type “ObservableCollection” and click “Ctrl+.” key combination to add namespaces in the using block.