3

我想检索用户的状态以将它们显示在列表框中(在网络表单中)。这是我的代码:

var twitterCtx = new TwitterContext();

var publicTweets =
from tweet in twitterCtx.Status
where tweet.Type == StatusType.User && tweet.ScreenName == txtName.Text
select tweet.Text;

_status = publicTweets.ToList();

但它在最后一行崩溃并显示以下消息:输入字符串格式不正确。

为什么?

我怎样才能正确地做到这一点?

亲切地,

风筝

4

1 回答 1

2

我已经尝试过你的代码并且它有效。尝试使用一些常量字符串准确指定 tweet.ScreenName:

tweet.ScreenName == "username"

另一种尝试的变体是tweet.ID == "username".

于 2011-04-24T17:53:48.010 回答