Ejemplo n.º 1
0
 /// <summary>
 /// Gets a split from a range.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <param name="splitList">The split list.</param>
 /// <param name="range">The <see cref="Analyze.WordRangeVisitor.Range"/>.</param>
 /// <returns>The split.</returns>
 public string GetSplitRange(string value, IList <Tuple <int, int> > splitList, Analyze.WordRangeVisitor.Range range)
 {
     return(this.GetSplitRange(value, splitList, range.First, range.Last));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets a split from a range.
 /// </summary>
 /// <param name="value">The value.</param>
 /// <param name="range">The <see cref="Analyze.WordRangeVisitor.Range"/>.</param>
 /// <returns>The split.</returns>
 public string GetSplitRange(string value, Analyze.WordRangeVisitor.Range range)
 {
     return(this.GetSplitRange(value, range.First, range.Last));
 }