I am using LinqToTwitter and would like to recreate the Twitter Retweet functionality.
I am able to retweet something with this line:
var retweet = await Connection.RetweetAsync(tweetID);
But Twitter also offers the possibilty to add a comment while retweeting. Is there is a chance to this the same way Twitter does?
Thank You,