Ejemplo n.º 1
0
        private static int ParseFixedTag(this RcSlotRegion region, SubArray <string> textLines)
        {
            textLines = region.FindFixedTagLines(textLines);

            region.AddFixedTextLines(
                textLines.Where(t => region.FixedTagMarker.MarkerRegex.IsMatch(t) == false)
                );

            return(textLines.Length);
        }