internal DocumentLine(TextDocument doc)
     : this()
 {
     _doc = doc;
 }
示例#2
0
 internal TextAnchor(TextDocument document)
 {
     _doc = document ?? throw new ArgumentNullException("document");
 }