AddRange
AddRange(IEnumerable<string>)
Adds the specified collection of words to this instance of the SpellingCorrector.
public void AddRange(IEnumerable<string> words)
| Parameter |
Type |
Description |
| words |
IEnumerable`1 |
The collection of words to add to the dictionary. |
Exceptions
| exception |
condition |
| ArgumentNullException |
Thrown when words is null. |
See Also
AddRange(string[])
Adds the specified collection of words to this instance of the SpellingCorrector.
public void AddRange(string[] words)
| Parameter |
Type |
Description |
| words |
String[] |
The collection of words to add to the dictionary. |
Exceptions
| exception |
condition |
| ArgumentNullException |
Thrown when words is null. |
See Also