Ejemplo n.º 1
0
 public void getUserTweet()
 {
     try
     {
         this.UserTweetLists.Clear();
         data.usertweetload(this.UserTweetLists, this.UserId);
     }
     catch (Exception ex)
     {
         this.UserTweetLists.Add(new Models.TweetInfo
         {
             Text = ex.Message + this.UserId.ToString()
         }
                                 );
     }
 }