Reputation:
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