Created
March 17, 2017 14:44
-
-
Save controlflow/163d94e19ea0dfe1454a2793463de043 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (var pair in myNotClosedTags) | |
{ | |
consumer.AddHighlighting(new XmlTagIsNotClosedHighlighting2(pair.Value, pair.Key), pair.Key); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach (var (tags, documentRange) in myNotClosedTags) | |
{ | |
consumer.AddHighlighting(new XmlTagIsNotClosedHighlighting2(tags, documentRange), documentRange); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment