I need a simple Sentiment Analysis library to use in my ASP.NET application. The library should be able to work on short strings (Twitter tweets have a maximum length of 140 characters long), and only needs to classify the tweets as positive or negative (and perhaps neutral, but not necessary).
I have found many similar questions on Stack Overflow, but haven't managed to find a class library in C# that quite fits my requirements.
I found this really cool webservice called uClassify that does exactly what I need, thanks to the post at Algorithm to determine how positive or negative a statement/text is.
But I want a library, not a web service. I will be processing thousands of tweets and the overhead of making HttpRequests is too much.