public override VBasic.VisualBasicSyntaxNode VisitXmlElementStartTag(CSSyntax.XmlElementStartTagSyntax node)
    {
        var ListOfAttributes = GatherAttributes(node.Attributes);

        return(VBFactory.XmlElementStartTag((VBSyntax.XmlNodeSyntax)node.Name.Accept(this), ListOfAttributes));
    }