public Tags ReadTagsSection() { var Result = new Tags(); Result.AddEntries(ReadTagDictionary(Tag.TagType.StructureStart)); Result.AddEntries(ReadTagDictionary(Tag.TagType.Attribute)); return(Result); }
private static Tags CreateTags() { Tags tags = new Tags(); tags.AddEntries(FileSystemTags.Structures.AllEntries); tags.AddEntries(FileSystemTags.Attributes.AllEntries); return(tags); }