Does there exist something equivalent to Natural Language Toolkit in c# like Python
A:
You could also try boo, http://boo.codehaus.org/ this will compile python into c#.net bytecode so you can use the NLTK modules as a lib in C#
JERiv
2009-11-19 14:55:28
Not really. Boo is a very different language than Python, and has pretty substantially diverged from the language from which it was inspired. But IronPython might help.
JasonTrue
2009-11-19 18:13:23
IronPython may be an option
Tinku
2009-11-20 05:45:00
I'm fairly certain that IronPython won't work either since NTLK requires NumPy which is a C module and not compatible with IronPython.
Jay Stevens
2010-06-14 19:09:44