Latest tweets

New tweet

Tweet

Code Snippets

Retrieving the most recent Tweets is as easy as:
User user = Twitter.GetAccountInfo();
TweetCollection myTweets = user.Statuses.GetHome();
Posting a new Tweet is as easy as:
Twitter.Profile.Statuses.Home.InsertItem("Your message here").Post();