Visual Studio offers a powerful debugger to aid with testing and troubleshooting your applications. One of the most common uses of a debugger is to set breakpoints, which are positions in the code that, when reached, cause the program execution to pause, allowing the developer to inspect the code and state of the program. When [...]
Posts Tagged ‘vs.net’
Breakpoints – Tip of Week #19
Posted in .Net, Microsoft, Tip of Week, Visual Studio, tagged .Net, Breakpoints, Microsoft, Technology, Visual Studio, Visual Studio Tip, Visual Studio Tip Of Week, Visual Studio tips, vs.net on February 2, 2009 | 1 Comment »
RexEx Search – Tip of Week #16
Posted in .Net, Microsoft, Tip of Week, Visual Studio, tagged .Net, Development, Microsoft, Technology, Tip of Week, Visual Studio, Visual Studio Tip, Visual Studio Tip Of Week, Visual Studio tips, vs.net on January 5, 2009 | Leave a Comment »
Regular expressions are an extremely versatile text-matching language that gives you incredible power when searching your documents and when used with replace operations, can greatly assist with repetitive changes to blocks of code.
The basic regular expression search is easily done. You simply open the Find dialog through the Edit – Find [...]
Insert Code Snippet – Tip Of Week #15
Posted in .Net, Tip of Week, Visual Studio, tagged .Net, C#.Net, Developer, Development, Microsoft, Tip of Week, Visual Studio, Visual Studio Tip, Visual Studio Tip Of Week, Visual Studio tips, vs.net on December 29, 2008 | Leave a Comment »
Hi guys, do you know you can use already ready code inside your visual studio? Yes certainly you can insert code snippets into your code. You can invoke the “Insert Snippet” by using shortcut “ctrl k + ctrl x”.
You can download some of the code snippets from http://msdn.microsoft.com/en-us/vstudio/aa718338.aspx all you need to do is [...]
Text Template Transformation Toolkit (T4) – T4 Template
Posted in .Net, ASP.Net, Development, Visual Studio, tagged .Net, AutoCode, Code Generator, T4 Template, Text Template Transformation Toolkit, Visual Studio, Visual Studio Code Generator, Visual Studio Template, vs.net on December 25, 2008 | 1 Comment »
Text Template Transformation Toolkit (T4) is a template-based code generation engine. This is one of the best things I found out today, so just thought of sharing with you guys.
This is awesome code generator template. This template is best used to generate your business logic code that will communicate with the database.
You can create a [...]
Tasklist Comments / TODO in Visual Studio – Tip Of Week #14
Posted in .Net, Development, Tip of Week, Visual Studio, tagged .Net, Development, Microsoft, Technology, Tip of Week, Visual Studio, Visual Studio Tip Of Week, Visual Studio tips, vs.net on December 22, 2008 | Leave a Comment »
Task list comments are a great way to remind you or others of something that still needs to be done or something that may need to be revisited for enhancement.
The task list (Ctrl-Alt-K/View.TaskList) is a handy tool that is most often used to view errors or warnings from the compilation of [...]
