コード例 #1
0
 /// <summary>
 ///     Removes a word from the user list
 /// </summary>
 /// <param name="word" type="string">
 ///     <para>
 ///         The word to remove
 ///     </para>
 /// </param>
 /// <remarks>
 ///     This method is only affects the user word list
 /// </remarks>
 public void Remove(string word)
 {
     UserWords.Remove(word);
     SaveUserFile();
 }