user1850156
user1850156

Reputation:

Specific search on twitter using tweetsharp

TwitterService vice = new TwitterService();
           var tweeting = vice.Search("#Ghaza", 100);
           List<TwitterSearchStatus> resultList = new List<TwitterSearchStatus>(tweeting.Statuses);
           foreach (var twt in resultList)
           {
               Console.WriteLine(resultList);
           }

It give me output like

System.Collection.Generic.List '1[TweetSharp.TwitterSearchStatus]

its not returning me tweets even my code run without error

Upvotes: 1

Views: 2105

Answers (1)

user1626276
user1626276

Reputation:

Console.WriteLine(twt.Text);

use this in your loop . it works .

Upvotes: 3

Related Questions