Пример #1
0
        public Tags ReadTagsSection()
        {
            var Result = new Tags();

            Result.AddEntries(ReadTagDictionary(Tag.TagType.StructureStart));
            Result.AddEntries(ReadTagDictionary(Tag.TagType.Attribute));
            return(Result);
        }
Пример #2
0
        private static Tags CreateTags()
        {
            Tags tags = new Tags();

            tags.AddEntries(FileSystemTags.Structures.AllEntries);
            tags.AddEntries(FileSystemTags.Attributes.AllEntries);
            return(tags);
        }