示例#1
0
        private void LinesToChars()
        {
            foreach (var patch in patches)
            {
                patch.LinesToChars(charRep);
            }

            lmText = charRep.LinesToChars(textLines);
        }
示例#2
0
 public void LinesToChars(CharRepresenter rep)
 {
     lmContext = rep.LinesToChars(ContextLines);
     lmPatched = rep.LinesToChars(PatchedLines);
 }
示例#3
0
 public int[] Match() => Match(charRep.LinesToChars(lines1), charRep.LinesToChars(lines2), charRep.MaxLineChar);