TweetSharp。如何在列表框中撤消ListFollower?

时间:2016-01-30 11:44:22

标签: c# listbox

使用TweetSharp我正在计算关注者列表。如何将其撤回到ListBox?

以下是代码:

var options = new ListFollowersOptions { ScreenName = "tanya_000120" };
var ids = ts.ListFollowers(options); //there is an exception here

foreach (var id in ids) 
{
    listBox1.Items.Add(id.ScreenName);
}

0 个答案:

没有答案