C# 如何避免LinqtoTwitter修剪的tweet状态中的链接中断或标签中断?

C# 如何避免LinqtoTwitter修剪的tweet状态中的链接中断或标签中断?,c#,asp.net,linq-to-twitter,C#,Asp.net,Linq To Twitter,我使用LinqTOTwitter检索用户状态并将其显示到我们的站点,但是当tweet大小超过140个字符时,它会修剪tweet。所以,若在推特的末尾有一个链接,它就会断开。我怎样才能避免这种情况 为了从LinqTOtwitter获取我的tweet状态,我使用以下代码 List<Status> tweetstatus = (from stat in twitterCtx.Status where stat.ScreenName == ScreenName && s

我使用LinqTOTwitter检索用户状态并将其显示到我们的站点,但是当tweet大小超过140个字符时,它会修剪tweet。所以,若在推特的末尾有一个链接,它就会断开。我怎样才能避免这种情况

为了从LinqTOtwitter获取我的tweet状态,我使用以下代码

List<Status> tweetstatus = 
(from stat in twitterCtx.Status 
where stat.ScreenName == ScreenName && 
stat.Type == StatusType.User && 
stat.IncludeEntities == true 
select stat).ToList();
列表状态=
(来自twitterCtx.Status中的stat)
其中stat.ScreenName==ScreenName&&
stat.Type==StatusType.User&&
stat.IncludeEntities==true
选择stat.ToList();