How can I find all the followers a Twitter user has using Linq2Twitter?
All I can find in the documentation is a reference to the .Following property, not the .Followers property.
var result = from search in context.List
where search.Following //etc
How can I find the followers a Twitter user has if I provide the twitter username?
twitter.com/foobar // 'foobar' is the username.