Is it possible to get the list of tweets of a twitter user in real-time using LinqToTwitter in C#
Following is the code i use to get the tweets of a user without real-time streaming.
var rawTwitterItems = twitterContext.Status.Where(x => x.ScreenName == "BloombergNews" && x.Type == StatusType.User);
var items= a.ToList();
Yes, LinqToTwitter does support streaming. See the documentation example on streaming users status messages: