• There will be two Windows Phone Garages in South Carolina next week. Join Glen Gordon, Chris Craft, and myself on June 16th in Columbia, SC, or join Glen Gordon, Chris G. Williams, and myself on June 17th in Greenville, SC. These will be a blast, and by participating you can win a brand new Windows Phone!

    You will build a Windows Phone application at the Windows Phone Garage, and if you use Telerik RadControls for Windows Phone, you may walk away with a license to use them! The trial comes with examples to ...

  • If you enjoy writing documentation from scratch, this article may not be for you. If you like removing as much repetitive work as possible, then JustCode can help you out. Aside from aiding in this endeavor with code, it also addresses code documentation.

    There are two primary features in JustCode I will discuss. The first is Generate Documentation which handles the XML comments for methods and types. The second is a new feature, Introduce Header, which was made available on May 3rd with internal build 1.

    Generate Documentation

    I like self-documenting code. I write short, descriptive methods intended for anyone ...

  • The internal build 1 of JustCode comes with three new refactorings to easily manipulate method parameters.

    Move to Parameter

    There are times when one has hardcoded a constant value within the body of a method, but the method would have more flexibility if the value were a parameter instead. This refactoring allows you to move the variable to a parameter, and it will automatically update calls to the method with the defined value for the variable.

     

    class  Program
    { static void Main(string[] args) { Ninja ninja = new Ninja(); ninja.Equip(Weapon.Katana); } } public class Ninja...