public override void BuildDependencyGraph(DependencyGraph g, Vertex root) { if (!this.GetLabel().Equals("NULL", StringComparison.InvariantCultureIgnoreCase)) { string label = this.GetLabel(); Vertex to = g.AddVertex(this, label); base.GraphVertex = to; g.AddEdge(root, to); } }