The aim of this project is to provide an open source text analysis library for .NET platform.
The main interface to use is ITextStatistic.
Sample code:
using(Stream stream = File.OpenRead("C:\somefile.txt"))
{
ITextStatisticBuilder builder = new TextStatisticsBuilder();
ITextStatistic stats = builder.Build(stream);
}
Application is deployed to nTextNetwork.