List words surrounding cursorWord in the index
C#
public int ListWords(
string cursorWord,
int range
);
Parameters
Parameters |
Description |
---|---|
cursorWord |
The word that will appear in the middle of the list |
range |
Number of words to find before and after cursorWord in the index |
Returns
Number of words in the list
See Also