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.