Is there anyway to create C# spelling checker without using Office library? I would be happy with the simplest possible solution.
|
use NHunspell. http://www.maierhofer.de/en/open-source/nhunspell-net-spell-checker.aspx personally, i have tried it. its good. From the NHunspell project page:
|
||||
|
|
|
The simplest solution ever is to use WPF: TextBox and RichTextBox controls of WPF support spell checking by default, just add the control, enable spell checking, and you have done! Here is a sample code:
|
|||
|
|
|
I know of this project NetSpell. It is in sourceforge and you can find many reference that discuss it in codeproject or search on google Dont think the project is active recently, but still pretty good for use
|
|||
|
|
if (str.Contains("teh")) str = str.Replace("teh", "the");. There's your spell checker and now you're happy! – John K Feb 25 '10 at 5:07