static void Main(string[] args) { var twitter = new Twitter { OAuthCustomerKey = "OAuth Customer Key", OAuthCustomerSecret = "OAuth Customer Secret" }; IEnumerable <string> twitts = twitter.GetTwitts("", 100).Result; foreach (var t in twitts) { Console.WriteLine(t + "\n"); } Console.ReadKey(); }