Esempio n. 1
0
 /// <summary>
 /// Determines whether [is gerund exception] [the specified word].
 /// </summary>
 /// <param name="word">The word.</param>
 /// <returns><c>true</c> if [is gerund exception] [the specified word]; otherwise, <c>false</c>.</returns>
 protected bool IsGerundException(string word)
 {
     return(!GerundExceptions.Contains(word.ToLowerInvariant()));
 }
Esempio n. 2
0
 /// <summary>
 /// Adds the gerund exception.
 /// </summary>
 /// <param name="word">The word.</param>
 protected void AddGerundException(string word)
 {
     GerundExceptions.Add(word);
 }