Recent Posts
posted on Friday, August 05, 2011. 2 comments.
If you want to protect your code, this command will help you to make it unreadable by renaming the member of a class to unmeaning names.
posted on Friday, April 29, 2011. 0 comments.
Let’s say you are coding something like this:var a0 = array[0]; var a1 = array[1]; var a2 = array[2]; var a3 = array[3]; var a4 = array[4]; Usually I use to copy and paste the first line n times and change the index n times. Boring and easy to make a mistake. AutoCode to the rescue. I’ve just created this command that will help us code these repetitive tasks incrementing the index automatically, so now I just need to write the first line, copy it to the clipboard, and execute the IndexRe...
posted on Thursday, March 03, 2011. 0 comments.
By default, AutoCode commands are compiled using the following assemblies:System.dll System.Core.dll System.Data.dll System.Xml.dll System.Drawing.dl System.Windows.Form.dll System.Xml.Linq.dll EnvDTE.dll EnvDTE80.dll EnvDTE90.dll EnvDTE100.dll (for Visual Studio 2010 only) In cases where we need any other assembly, we can use the Assembly directive specifying the name of the assembly. For example, in the following template, we reference the assemblies System.Data.Entity and MyLibrary...
posted on Tuesday, February 08, 2011. 4 comments.
This article shows the basis of using AutoCode. In this walkthrough we will generate a class with some properties to familiarize with AutoCode inline code generation.Create a new Console Application project Point the cursor just at the end of the class, like in the following code.using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { } ...
posted on Tuesday, February 08, 2011. 5 comments.
I’m excited to announce the release of AutoCode 4.0 for Visual Studio 2010 and 2008. For those new to AutoCode, just say that AutoCode is an Add-in for Visual Studio that will help developers coding, refactoring and executing repetitive tasks making them more productive. To summarize, these are some of the main features that makes AutoCode a must-have tool for Visual Studio ...
