I was able to create macros for functions, classes, and etc, but RoutedEvent is giving me trouble. For example my class header macro read as..
Public
doc.AppendChild(rootTag)
HeaderBegin(doc)
nameTag.SetAttribute(
nameTag.AppendChild(doc.CreateTextNode(element.Name))
doc.FirstChild.AppendChild(nameTag)
ClassDescriptiontag(doc)
HeaderEnd(doc)
SetCommentXml(element, doc)
MsgBox(
But I can't seem to figure out how to create a header macro for something like..
public static readonly RoutedEvent AcceptRequiredChangedEvent;
any help would be appreciated, thanks