I am relatively new to programming in C# (Learning on my own for a school project) and decided to try using TweetInvi to implement Twitter functionality. So far it\'s going goo
Simple solution. As explained before you need to take the tweet back from PublishTweet.
PublishTweet
string text = "text"; ITweet tweet = Tweet.PublishTweet(text); bool destroySuccess = tweet.Destroy();