I've got some pieces of code I need to turn in to snippets. Anyone know a good tool of visual studio plug-in that can do something like this?

Basically I would like to be able to parameterize code like this:

//MOVE TO TOP!!
private XmlData subject;

/// <summary>
/// Gets or sets the subject.
/// </summary>
/// <value>
/// The subject.
/// </value>
public XmlData Subject
{
    get
    {
        if (subject == null)
        {
            subject = CreateXmlDataInstance(Post_DA.SUBJECT_FIELD);
        }
        return subject;
    }
    set
    {
        subject = value;
    }
}

I hope one of you guys know a good tool.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I create snippets manually, but maybe a snippet designer like this can help you: SnippetDesigner

I don't think you could do that automatically any way - you have to define which elements to parameterize at least.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.