We all know some standard keyboard shortcuts that are available in Visual Studio IDE.
Here, are some more shortcuts to use in Visual Studio IDE, which can come handy at times.
Ctrl + K + C = Comment In Code
Ctrl + K + U = Comment Out Code
Ctrl + Shift + A = Add New Item
Ctrl + Shift + B = Build Solution
Ctrl + Shift + C = Class View
Ctrl + Shift + R = Resource View
Ctrl + Shift + O = Open Project
F12 = Go to definition
Here are some more interesting:
1. Find all references
Shift + F12 = Find all references
Say, you have created a method which is called at many places within your project.
Use this shortcut key to know see all the places where this method has been referenced.
2. Paste from Copy History
Ctrl + Shift + V = Paste History
Every time you press "Ctrl + C" to copy contents in your IDE, the previously copied item(s) get stored in a buffer. You can access those contents by repeatedly pressing Ctrl + Shift + V.
Friday, April 13, 2012
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2012
(49)
-
▼
April
(24)
- Get only Date part for SQL Server DateTime value
- Membership in ASP.NET MVC 4 (System.Web.Providers)
- Binding two or more types of objects (models) to s...
- Implement Custom Validation in ASP.NET MVC
- Simple client-side Validations using ASP.NET MVC
- Investigation: Values do not retain in model while...
- Data Binding to RadioButton in a View in MVC
- Investigation: SelectedIndexChanged not firing for...
- Investigation: ExecuteNonQuery() always returns -1
- Development and Deployment - Troubleshooting, Inve...
- Print Page Content to printer (or virtual print ou...
- Show long text in Tooltip
- Auto login into Team system with your authorized c...
- Visual Studio .NET - Some handy shortcuts
- Write custom events for User Controls in ASP.NET
- SQL Query to return each date of month in each dif...
- How to debug ASP.NET Windows Service
- FIX: Add a 32-bit SQL Server 2000 as a Linked serv...
- Difference between integer Cast and Convert in C#
- Optimizing SQL Code by replacing IF..ELSE with CAS...
- Check Authentication Mode in ASP.NET
- How to validate a page using Java script
- SQL Query - To search for a column (by column name...
- C#.NET - Difference between Convert.ToString(), .T...
-
▼
April
(24)
Thanks for sharing Nirman....
ReplyDeleteThanks Bhavin :)
ReplyDeleteCredit to you for most of Ctrl-Shift-V and Shift-F12