c# - Finding the tweetID of a tweet in tweetinvi -


i relatively new programming in c# (learning on own school project) , decided try using tweetinvi implement twitter functionality. far it's going good, got authentication , publishing , running, i'm struggling find out how use destroytweet() method. it, , many other methods takes tweetid parameter, can't figure out of how find specific tweet.

using following code publish tweet, how can find tweetid of tweet?

public itweet publishtweet(string text) {    return tweet.publishtweet(text); }  // snippet test method in main class. twitter.twitteruser.publishtweet(system.console.readline());  // still working on gui using readline now. 

it's easy solution, can't figure out! in advance.

simple solution. explained before need take tweet publishtweet.

string text = "text"; itweet tweet = tweet.publishtweet(text); bool destroysuccess = tweet.destroy(); 

Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

java - Digest auth with Spring Security using javaconfig -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -