我想检索用户的状态以将它们显示在列表框中(在网络表单中)。这是我的代码:
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();
但它在最后一行崩溃并显示以下消息:输入字符串格式不正确。
为什么?
我怎样才能正确地做到这一点?
亲切地,
风筝