This will only give you live tweets. Meaning, if you tweet while this code is running, then only you'll receive the tweet. Read up on dev.twitter.com to get more idea about the differences between streaming and rest API.
If you want to get your past tweets, you can use the following code:
If you want to get your past tweets, you can use the following code:
var loggedUser = User.GetLoggedUser(); var tweets = loggedUser.GetUserTimeline(); foreach (var tweet in tweets) { Console.WriteLine(tweet.Text); }