Code Snippet shortcut list for Visual Studio .NET
Code snippet in .net 2005 reduces a lot of coding time and also it makes coding very easy to the programmers. You should try to use code snippet during coding. **Hint: Type the code snippet shortcut in the IDE and press the tab button in the keyboard. It will automatically generate code for you. Example: type 'for' in your IDE and then press the Tab key. The code snippet for 'for' loop will be generated. for (int i = 0; i { } Code Snippet Shortcut List: No. Code Snippet ShortCut Explanation 1 #if Code snippet for #if 2 #region Code snippet for region 3 ~ Code snippet for destructor. 4 cw Code snippet for console.writeline() function 5 ctor Code snippet for constructor 6 checked Code snippet for Cheked block 7 class Code snippet for class 8 do Code snippet for do…while block 9 else Co...