Click here to Skip to main content
15,883,778 members
Articles / Web Development / ASP.NET
Tip/Trick

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

Rate me:
Please Sign up or sign in to vote.
3.14/5 (7 votes)
12 Sep 2013CPOL1 min read 13.3K   15   7
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”.

    Image 1

    Press Tab, Tab:

    Image 2

    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.

    Image 3

  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.

    Image 4
  3. Search any file directly from Find combo box.

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

    Image 5
  4. Add namespaces in using block.

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

    Image 6

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 4 Pin
Member 1029865826-Sep-13 21:11
Member 1029865826-Sep-13 21:11 
GeneralMy vote of 3 Pin
Menon Santosh14-Sep-13 6:07
professionalMenon Santosh14-Sep-13 6:07 
GeneralMy vote of 3 Pin
BillW3313-Sep-13 6:31
professionalBillW3313-Sep-13 6:31 
GeneralMy vote of 3 Pin
johannesnestler13-Sep-13 1:37
johannesnestler13-Sep-13 1:37 
Questiongood Pin
Jagz W12-Sep-13 22:47
professionalJagz W12-Sep-13 22:47 
AnswerRe: good Pin
johannesnestler13-Sep-13 1:35
johannesnestler13-Sep-13 1:35 
of course...
GeneralMy vote of 3 Pin
Sunasara Imdadhusen12-Sep-13 21:58
professionalSunasara Imdadhusen12-Sep-13 21:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.